/* Options: Date: 2026-08-27 07:11:57 Version: 10.08 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetSelloutFormConfigurations.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/selloutFormConfigurations/{brand}/{posCode}", Verbs="GET") open class GetSelloutFormConfigurations : IReturn { /** * Brand Triagram, e.g. CAR, IWC, VAC */ @ApiMember(Description="Brand Triagram, e.g. CAR, IWC, VAC", IsRequired=true) open var brand:String? = null /** * Point of Sale Code, e.g. ES100:102048 */ @ApiMember(Description="Point of Sale Code, e.g. ES100:102048", IsRequired=true) open var posCode:String? = null companion object { private val responseType = GetSelloutFormConfigurationsResponse::class.java } override fun getResponseType(): Any? = GetSelloutFormConfigurations.responseType } open class GetSelloutFormConfigurationsResponse { /** * Requirement for sales representative field, e.g. M, V, N */ @ApiMember(Description="Requirement for sales representative field, e.g. M, V, N", IsRequired=true) open var salesRep:String? = null /** * Allow consignment transfer during sellout, e.g. M, V, N */ @ApiMember(Description="Allow consignment transfer during sellout, e.g. M, V, N", IsRequired=true) open var allowConsignmentTransfer:String? = null /** * 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) open var automaticInvoiceNumber:String? = null /** * Allow consignment sellout return is stock, e.g. V, N */ @ApiMember(Description="Allow consignment sellout return is stock, e.g. V, N", IsRequired=true) open var allowConsignmentReturnInStock:String? = null /** * 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) open var cpoSaleDeclaration:String? = null /** * 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) open var cpoPOSManageStock:String? = null /** * 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) open var isCpoExtraAuthorizedPartner:String? = null /** * 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) open var allowCPOManageStock:String? = null }