/* Options: Date: 2026-05-19 09:52:49 Version: 8.22 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: ExtendSellOut.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/warranty/{saleDetailId}/extend", Verbs="POST") open class ExtendSellOut : IReturn { /** * Unique Identifier of the Sell-out created in Booster */ @ApiMember(Description="Unique Identifier of the Sell-out created in Booster", IsRequired=true) var saleDetailId:Int? = null companion object { private val responseType = ExtendSellOutResponse::class.java } override fun getResponseType(): Any? = ExtendSellOut.responseType } open class ExtendSellOutResponse { /** * ccp substatus information */ @ApiMember(Description="ccp substatus information", IsRequired=true) var ccpStatus:StatusWarrantyExtension? = null /** * ccp main status information */ @ApiMember(Description="ccp main status information", IsRequired=true) var boosterStatus:Status? = null } open class StatusWarrantyExtension : Status() { /** * Information about if a warranty can be retriggered */ @ApiMember(Description="Information about if a warranty can be retriggered", IsRequired=true) var retriggerEnabled:Boolean? = null } open class Status { /** * Unique Identifier of the Sell-out created in Booster */ @ApiMember(Description="Unique Identifier of the Sell-out created in Booster", IsRequired=true) var id:String? = null /** * Unique Identifier of the Sell-out created in Booster */ @ApiMember(Description="Unique Identifier of the Sell-out created in Booster", IsRequired=true) var description:String? = null }