/* Options: Date: 2026-08-27 07:10:59 SwiftVersion: 6.0 Version: 10.08 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: GetCatalog.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //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(){} }