/* Options: Date: 2026-05-09 17:14:01 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://ws4.fibudata.net //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: OnlinehandelShopifyCheckShopTokenRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/fibuscan/Onlinehandel/shopify/checkShopToken", Verbs="GET, POST") open class OnlinehandelShopifyCheckShopTokenRequest : IReturn { var token:String? = null companion object { private val responseType = OnlinehandelShopifyCheckShopTokenResponse::class.java } override fun getResponseType(): Any? = OnlinehandelShopifyCheckShopTokenRequest.responseType } open class OnlinehandelShopifyCheckShopTokenResponse { var error:String? = null var result:Boolean? = null var mandnr:String? = null var werte:ArrayList = ArrayList() }