/* Options: Date: 2026-05-19 09:53:03 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: GetSelloutFormConfigurations.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/selloutFormConfigurations/{brand}/{posCode}", "GET") public class GetSelloutFormConfigurations : IReturn, Codable { public typealias Return = GetSelloutFormConfigurationsResponse /** * Brand Triagram, e.g. CAR, IWC, VAC */ // @ApiMember(Description="Brand Triagram, e.g. CAR, IWC, VAC", IsRequired=true) public var brand:String /** * Point of Sale Code, e.g. ES100:102048 */ // @ApiMember(Description="Point of Sale Code, e.g. ES100:102048", IsRequired=true) public var posCode:String required public init(){} } public class GetSelloutFormConfigurationsResponse : Codable { /** * Requirement for sales representative field, e.g. M, V, N */ // @ApiMember(Description="Requirement for sales representative field, e.g. M, V, N", IsRequired=true) public var salesRep:String /** * Allow consignment transfer during sellout, e.g. M, V, N */ // @ApiMember(Description="Allow consignment transfer during sellout, e.g. M, V, N", IsRequired=true) public var allowConsignmentTransfer:String /** * Invoice Number will be generated automatically during sellout, e.g. M, V, N */ // @ApiMember(Description="Invoice Number will be generated automatically during sellout, e.g. M, V, N", IsRequired=true) public var automaticInvoiceNumber:String /** * Allow consignment sellout return is stock, e.g. V, N */ // @ApiMember(Description="Allow consignment sellout return is stock, e.g. V, N", IsRequired=true) public var allowConsignmentReturnInStock:String /** * Allow declare sellout and extend the warranty of certified pre-owned items, e.g. V, N */ // @ApiMember(Description="Allow declare sellout and extend the warranty of certified pre-owned items, e.g. V, N", IsRequired=true) public var cpoSaleDeclaration:String required public init(){} }