/* Options: Date: 2026-08-27 07:10:37 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: CreateSellOut.* //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="/warranty", Verbs="POST") open class CreateSellOut : IReturn { /** * Brand Trigram, e.g. CAR, IWC; compulsory only if articleCode is not provided */ @ApiMember(Description="Brand Trigram, e.g. CAR, IWC; compulsory only if articleCode is not provided") open var brand:String? = null /** * Richemont POS code */ @ApiMember(Description="Richemont POS code", IsRequired=true) open var posCode:String? = null /** * Receipt or Invoice Number */ @ApiMember(Description="Receipt or Invoice Number") open var documentNumber:String? = null /** * Date of the Sell-out */ @ApiMember(Description="Date of the Sell-out", IsRequired=true) open var documentDate:Date? = null /** * Position Number */ @ApiMember(Description="Position Number") open var documentLineNumber:Int? = null /** * Richemont Reference Code of the item */ @ApiMember(Description="Richemont Reference Code of the item", IsRequired=true) open var articleCode:String? = null /** * Serial Number of the item */ @ApiMember(Description="Serial Number of the item") open var serialNumber:String? = null /** * Use positive for standard Sell-out and negative quantity for return */ @ApiMember(Description="Use positive for standard Sell-out and negative quantity for return", IsRequired=true) open var quantity:Int? = null /** * Sold Price */ @ApiMember(Description="Sold Price") open var unitPrice:BigDecimal? = null /** * Currency of the sold price */ @ApiMember(Description="Currency of the sold price") open var currencyCode:String? = null /** * Booster Customer Id */ @ApiMember(Description="Booster Customer Id") open var boosterCustomerId:Int? = null /** * Sale Representative Email e.g. rauf.aliyev@richemont.com */ @ApiMember(Description="Sale Representative Email e.g. rauf.aliyev@richemont.com") open var saleRepresentativeEmails:ArrayList? = null /** * Promoter Type ID, e.g. DAI, FIT, GRT */ @ApiMember(Description="Promoter Type ID, e.g. DAI, FIT, GRT") open var promoterTypeId:String? = null /** * Return Reason ID, e.g ADM, CLR, EXC, DEF, OTH */ @ApiMember(Description="Return Reason ID, e.g ADM, CLR, EXC, DEF, OTH") open var returnReasonId:String? = null /** * Sale related comments */ @ApiMember(Description="Sale related comments") open var comments:String? = null /** * Original Sale Detail Id */ @ApiMember(Description="Original Sale Detail Id") open var originalSaleDetailId:Int? = null /** * To have the piece back in stock as consignment in case of consignment sellout return */ @ApiMember(Description="To have the piece back in stock as consignment in case of consignment sellout return") open var consSelloutReturnInStock:Boolean? = null /** * Reason for the sell-out, e.g., 'CPO' (Certified Pre-Owned) */ @ApiMember(Description="Reason for the sell-out, e.g., 'CPO' (Certified Pre-Owned)") open var saleReasonId:String? = null companion object { private val responseType = CreateSellOutResponse::class.java } override fun getResponseType(): Any? = CreateSellOut.responseType } open class CreateSellOutResponse { /** * Unique Identifier of the Sell-out item created in Booster */ @ApiMember(Description="Unique Identifier of the Sell-out item created in Booster") open var saleDetailId:Int? = null /** * Unique Identifiers of the Sell-out items created in Booster if more than one */ @ApiMember(Description="Unique Identifiers of the Sell-out items created in Booster if more than one") open var saleDetailIds:ArrayList? = null /** * Unique Identifier of the Sell-out header created in Booster */ @ApiMember(Description="Unique Identifier of the Sell-out header created in Booster", IsRequired=true) open var saleId:Int? = null }