/* Options: Date: 2026-05-19 10:46:17 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetPosChainTransferAvailable.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/posChain/{brand}/{posCode}/availableForTransfer", Verbs="GET") open class GetPosChainTransferAvailable : IReturn { /** * Brand */ @ApiMember(Description="Brand", IsRequired=true) var brand:String? = null /** * POS Legacy Code */ @ApiMember(Description="POS Legacy Code", IsRequired=true) var posCode:String? = null companion object { private val responseType = GetPosChainTransferAvailableResponse::class.java } override fun getResponseType(): Any? = GetPosChainTransferAvailable.responseType } open class GetPosChainTransferAvailableResponse : ArrayList() { } open class Pos { /** * POS Code */ @ApiMember(Description="POS Code", IsRequired=true) var posCode:String? = null /** * Name of the POS */ @ApiMember(Description="Name of the POS", IsRequired=true) var name:String? = null /** * City of the POS */ @ApiMember(Description="City of the POS", IsRequired=true) var city:String? = null /** * Address of the POS */ @ApiMember(Description="Address of the POS", IsRequired=true) var address:String? = null /** * Country of the POS */ @ApiMember(Description="Country of the POS", IsRequired=true) var country:String? = null /** * Brand of the POS */ @ApiMember(Description="Brand of the POS", IsRequired=true) var brand:String? = null } open class Pos { /** * Name of the POS */ @ApiMember(Description="Name of the POS", IsRequired=true) var name:String? = null /** * POS Code */ @ApiMember(Description="POS Code", IsRequired=true) var posCode:String? = null /** * Pos Code To Be Displayed */ @ApiMember(Description="Pos Code To Be Displayed", IsRequired=true) var posCodeToBeDisplayed:String? = null /** * Country of the POS */ @ApiMember(Description="Country of the POS", IsRequired=true) var country:String? = null /** * City of the POS */ @ApiMember(Description="City of the POS", IsRequired=true) var city:String? = null /** * Postal Code */ @ApiMember(Description="Postal Code", IsRequired=true) var postalCode:String? = null /** * State */ @ApiMember(Description="State", IsRequired=true) var state:String? = null /** * Street */ @ApiMember(Description="Street", IsRequired=true) var street:String? = null }