/* Options: Date: 2026-05-09 17:13:12 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://ws4.fibudata.net //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: OnlinehandelShopifyCheckShopTokenRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class OnlinehandelShopifyCheckShopTokenResponse { public error: string; public result: boolean; public mandnr: string; public werte: string[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/fibuscan/Onlinehandel/shopify/checkShopToken", "GET, POST") export class OnlinehandelShopifyCheckShopTokenRequest implements IReturn { public token: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'OnlinehandelShopifyCheckShopTokenRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new OnlinehandelShopifyCheckShopTokenResponse(); } }