/* Options: Date: 2026-05-19 10:49:42 SwiftVersion: 5.0 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: GetPosChainTransferAvailable.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/posChain/{brand}/{posCode}/availableForTransfer", "GET") public class GetPosChainTransferAvailable : IReturn, Codable { public typealias Return = GetPosChainTransferAvailableResponse /** * Brand */ // @ApiMember(Description="Brand", IsRequired=true) public var brand:String /** * POS Legacy Code */ // @ApiMember(Description="POS Legacy Code", IsRequired=true) public var posCode:String required public init(){} } public class GetPosChainTransferAvailableResponse : List { required public init(){ super.init() } required public init(from decoder: Decoder) throws { try super.init(from: decoder) } public override func encode(to encoder: Encoder) throws { try super.encode(to: encoder) } } public class Pos : Codable { /** * POS Code */ // @ApiMember(Description="POS Code", IsRequired=true) public var posCode:String /** * Name of the POS */ // @ApiMember(Description="Name of the POS", IsRequired=true) public var name:String /** * City of the POS */ // @ApiMember(Description="City of the POS", IsRequired=true) public var city:String /** * Address of the POS */ // @ApiMember(Description="Address of the POS", IsRequired=true) public var address:String /** * Country of the POS */ // @ApiMember(Description="Country of the POS", IsRequired=true) public var country:String /** * Brand of the POS */ // @ApiMember(Description="Brand of the POS", IsRequired=true) public var brand:String required public init(){} } public class Pos : Codable { /** * Name of the POS */ // @ApiMember(Description="Name of the POS", IsRequired=true) public var name:String /** * POS Code */ // @ApiMember(Description="POS Code", IsRequired=true) public var posCode:String /** * Pos Code To Be Displayed */ // @ApiMember(Description="Pos Code To Be Displayed", IsRequired=true) public var posCodeToBeDisplayed:String /** * Country of the POS */ // @ApiMember(Description="Country of the POS", IsRequired=true) public var country:String /** * City of the POS */ // @ApiMember(Description="City of the POS", IsRequired=true) public var city:String /** * Postal Code */ // @ApiMember(Description="Postal Code", IsRequired=true) public var postalCode:String /** * State */ // @ApiMember(Description="State", IsRequired=true) public var state:String /** * Street */ // @ApiMember(Description="Street", IsRequired=true) public var street:String required public init(){} }