| GET, POST | /fibuscan/Onlinehandel/AbrechnungsMsgSenden |
|---|
import java.math.*;
import java.util.*;
import net.servicestack.client.*;
public class dtos
{
public static class AbrechnungsMsgSendenRequest
{
public String Fileguid = null;
public Integer ZeilNummer = null;
public String AbrechnungsGuid = null;
public Long OnlinehandelDateiId = null;
public String msg = null;
public String fileName = null;
public String getFileguid() { return Fileguid; }
public AbrechnungsMsgSendenRequest setFileguid(String value) { this.Fileguid = value; return this; }
public Integer getZeilNummer() { return ZeilNummer; }
public AbrechnungsMsgSendenRequest setZeilNummer(Integer value) { this.ZeilNummer = value; return this; }
public String getAbrechnungsGuid() { return AbrechnungsGuid; }
public AbrechnungsMsgSendenRequest setAbrechnungsGuid(String value) { this.AbrechnungsGuid = value; return this; }
public Long getOnlinehandelDateiId() { return OnlinehandelDateiId; }
public AbrechnungsMsgSendenRequest setOnlinehandelDateiId(Long value) { this.OnlinehandelDateiId = value; return this; }
public String getMsg() { return msg; }
public AbrechnungsMsgSendenRequest setMsg(String value) { this.msg = value; return this; }
public String getFileName() { return fileName; }
public AbrechnungsMsgSendenRequest setFileName(String value) { this.fileName = value; return this; }
}
public static class AbrechnungsMsgSendenResponse
{
public Boolean result = null;
public String error_msg = null;
public Boolean isResult() { return result; }
public AbrechnungsMsgSendenResponse setResult(Boolean value) { this.result = value; return this; }
public String getErrorMsg() { return error_msg; }
public AbrechnungsMsgSendenResponse setErrorMsg(String value) { this.error_msg = value; return this; }
}
}
Java AbrechnungsMsgSendenRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /fibuscan/Onlinehandel/AbrechnungsMsgSenden HTTP/1.1
Host: ws4.fibudata.net
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<AbrechnungsMsgSendenRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FIBUdataServiceStack.ServiceModel.Messages">
<AbrechnungsGuid>String</AbrechnungsGuid>
<Fileguid>String</Fileguid>
<OnlinehandelDateiId>0</OnlinehandelDateiId>
<ZeilNummer>0</ZeilNummer>
<fileName>String</fileName>
<msg>String</msg>
</AbrechnungsMsgSendenRequest>
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <AbrechnungsMsgSendenResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FIBUdataServiceStack.ServiceModel.Messages"> <error_msg>String</error_msg> <result>false</result> </AbrechnungsMsgSendenResponse>