/* Options: Date: 2026-05-09 17:13:32 SwiftVersion: 5.0 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://ws4.fibudata.net //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: OnlinehandelShopifyCheckShopTokenRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/fibuscan/Onlinehandel/shopify/checkShopToken", "GET, POST") public class OnlinehandelShopifyCheckShopTokenRequest : IReturn, Codable { public typealias Return = OnlinehandelShopifyCheckShopTokenResponse public var token:String required public init(){} } public class OnlinehandelShopifyCheckShopTokenResponse : Codable { public var error:String public var result:Bool public var mandnr:String public var werte:[String] = [] required public init(){} }