| GET, POST | /fibuscan/Onlinehandel/shopify/checkShopToken |
|---|
import java.math.*;
import java.util.*;
import net.servicestack.client.*;
public class dtos
{
public static class OnlinehandelShopifyCheckShopTokenRequest
{
public String token = null;
public String getToken() { return token; }
public OnlinehandelShopifyCheckShopTokenRequest setToken(String value) { this.token = value; return this; }
}
public static class OnlinehandelShopifyCheckShopTokenResponse
{
public String error = null;
public Boolean result = null;
public String mandnr = null;
public ArrayList<String> werte = null;
public String getError() { return error; }
public OnlinehandelShopifyCheckShopTokenResponse setError(String value) { this.error = value; return this; }
public Boolean isResult() { return result; }
public OnlinehandelShopifyCheckShopTokenResponse setResult(Boolean value) { this.result = value; return this; }
public String getMandnr() { return mandnr; }
public OnlinehandelShopifyCheckShopTokenResponse setMandnr(String value) { this.mandnr = value; return this; }
public ArrayList<String> getWerte() { return werte; }
public OnlinehandelShopifyCheckShopTokenResponse setWerte(ArrayList<String> value) { this.werte = value; return this; }
}
}
Java OnlinehandelShopifyCheckShopTokenRequest 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/shopify/checkShopToken HTTP/1.1
Host: ws4.fibudata.net
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<OnlinehandelShopifyCheckShopTokenRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FIBUdataServiceStack.ServiceModel.Messages">
<token>String</token>
</OnlinehandelShopifyCheckShopTokenRequest>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<OnlinehandelShopifyCheckShopTokenResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FIBUdataServiceStack.ServiceModel.Messages">
<error>String</error>
<mandnr>String</mandnr>
<result>false</result>
<werte xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>String</d2p1:string>
</werte>
</OnlinehandelShopifyCheckShopTokenResponse>