| 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 .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
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/json
Content-Type: application/json
Content-Length: length
{"Fileguid":"String","ZeilNummer":0,"AbrechnungsGuid":"String","OnlinehandelDateiId":0,"msg":"String","fileName":"String"}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"result":false,"error_msg":"String"}