/* Options: Date: 2026-05-19 09:52:56 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: GetCatalog.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/purchase/catalog", "GET") public class GetCatalog : IReturn, Codable { public typealias Return = GetCatalogResponse /** * POS Legacy */ // @ApiMember(Description="POS Legacy", IsRequired=true) public var posCode:String /** * Brand Trigram of the POS */ // @ApiMember(Description="Brand Trigram of the POS", IsRequired=true) public var brand:String required public init(){} } public class GetCatalogResponse : Codable { public var articles:[Article] = [] required public init(){} } public class Article : Codable { /** * Reference ID / Code of the Article */ // @ApiMember(Description="Reference ID / Code of the Article", IsRequired=true) public var articleCode:String /** * Price of the article */ // @ApiMember(Description="Price of the article", IsRequired=true) public var price:Double /** * Currency of the price of the article */ // @ApiMember(Description="Currency of the price of the article", IsRequired=true) public var currency:String required public init(){} }