FIBUdataServiceStack

<back to all web services

OnlinehandelNeuerTypAnlegenRequest

The following routes are available for this service:
GET, POST/fibuscan/Onlinehandel/NeuerTypAnlegen
import java.math.*;
import java.util.*;
import net.servicestack.client.*;

public class dtos
{

    public static class OnlinehandelNeuerTypAnlegenRequest
    {
        public String bezeichnung = null;
        public Integer suchfeld1 = null;
        public String suchfeld1_text = null;
        public Integer suchfeld2 = null;
        public String suchfeld2_text = null;
        public Long del = null;
        public Long parent_id = null;
        public Boolean soll_parsen = null;
        public String guid = null;
        
        public String getBezeichnung() { return bezeichnung; }
        public OnlinehandelNeuerTypAnlegenRequest setBezeichnung(String value) { this.bezeichnung = value; return this; }
        public Integer getSuchfeld1() { return suchfeld1; }
        public OnlinehandelNeuerTypAnlegenRequest setSuchfeld1(Integer value) { this.suchfeld1 = value; return this; }
        public String getSuchfeld1Text() { return suchfeld1_text; }
        public OnlinehandelNeuerTypAnlegenRequest setSuchfeld1Text(String value) { this.suchfeld1_text = value; return this; }
        public Integer getSuchfeld2() { return suchfeld2; }
        public OnlinehandelNeuerTypAnlegenRequest setSuchfeld2(Integer value) { this.suchfeld2 = value; return this; }
        public String getSuchfeld2Text() { return suchfeld2_text; }
        public OnlinehandelNeuerTypAnlegenRequest setSuchfeld2Text(String value) { this.suchfeld2_text = value; return this; }
        public Long getDel() { return del; }
        public OnlinehandelNeuerTypAnlegenRequest setDel(Long value) { this.del = value; return this; }
        public Long getParentId() { return parent_id; }
        public OnlinehandelNeuerTypAnlegenRequest setParentId(Long value) { this.parent_id = value; return this; }
        public Boolean isSollParsen() { return soll_parsen; }
        public OnlinehandelNeuerTypAnlegenRequest setSollParsen(Boolean value) { this.soll_parsen = value; return this; }
        public String getGuid() { return guid; }
        public OnlinehandelNeuerTypAnlegenRequest setGuid(String value) { this.guid = value; return this; }
    }

    public static class OnlinehandelNeuerTypAnlegenResponse
    {
        public String errorMSG = null;
        
        public String getErrorMSG() { return errorMSG; }
        public OnlinehandelNeuerTypAnlegenResponse setErrorMSG(String value) { this.errorMSG = value; return this; }
    }

}

Java OnlinehandelNeuerTypAnlegenRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /fibuscan/Onlinehandel/NeuerTypAnlegen HTTP/1.1 
Host: ws4.fibudata.net 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<OnlinehandelNeuerTypAnlegenRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FIBUdataServiceStack.ServiceModel.Messages">
  <bezeichnung>String</bezeichnung>
  <del>0</del>
  <guid>String</guid>
  <parent_id>0</parent_id>
  <soll_parsen>false</soll_parsen>
  <suchfeld1>0</suchfeld1>
  <suchfeld1_text>String</suchfeld1_text>
  <suchfeld2>0</suchfeld2>
  <suchfeld2_text>String</suchfeld2_text>
</OnlinehandelNeuerTypAnlegenRequest>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<OnlinehandelNeuerTypAnlegenResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FIBUdataServiceStack.ServiceModel.Messages">
  <errorMSG>String</errorMSG>
</OnlinehandelNeuerTypAnlegenResponse>