/* Options: Date: 2026-08-27 08:00:53 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: GetSelloutFormConfigurations.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //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? /** * Determine if a POS is able to have CPO sellouts and buy-ins with stock, e.g. V, N */ // @ApiMember(Description="Determine if a POS is able to have CPO sellouts and buy-ins with stock, e.g. V, N", IsRequired=true) public var cpoPOSManageStock:String? /** * Determine if a POS is authorized to service the piece themselves, e.g. V, N */ // @ApiMember(Description="Determine if a POS is authorized to service the piece themselves, e.g. V, N", IsRequired=true) public var isCpoExtraAuthorizedPartner:String? /** * Determine if a POS and current user are allowed to manage CPO stock, e.g. V, N */ // @ApiMember(Description="Determine if a POS and current user are allowed to manage CPO stock, e.g. V, N", IsRequired=true) public var allowCPOManageStock:String? required public init(){} }