/* Options: Date: 2026-05-09 17:12:17 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://ws4.fibudata.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: OnlinehandelShopifyCheckShopTokenRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/fibuscan/Onlinehandel/shopify/checkShopToken", Verbs="GET, POST") public static class OnlinehandelShopifyCheckShopTokenRequest implements IReturn { public String token = null; public String getToken() { return token; } public OnlinehandelShopifyCheckShopTokenRequest setToken(String value) { this.token = value; return this; } private static Object responseType = OnlinehandelShopifyCheckShopTokenResponse.class; public Object getResponseType() { return responseType; } } public static class OnlinehandelShopifyCheckShopTokenResponse { public String error = null; public Boolean result = null; public String mandnr = null; public ArrayList 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 getWerte() { return werte; } public OnlinehandelShopifyCheckShopTokenResponse setWerte(ArrayList value) { this.werte = value; return this; } } }