/* Options: Date: 2026-08-27 07:12:14 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: PatchSellout.* //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/{saleId}", Verbs="PATCH") open class PatchSellout : IReturn { /** * Unique Identifier of the Sell-out item created in Booster */ @ApiMember(Description="Unique Identifier of the Sell-out item created in Booster", IsRequired=true) open var saleId:Int? = null /** * Emails of Sale Representatives */ @ApiMember(Description="Emails of Sale Representatives") open var saleRepresentativeEmails:ArrayList? = null /** * Promoter Type ID */ @ApiMember(Description="Promoter Type ID") open var promoterTypeId:String? = null companion object { private val responseType = PatchSelloutResponse::class.java } override fun getResponseType(): Any? = PatchSellout.responseType } open class PatchSelloutResponse { }