/* Options: Date: 2026-05-19 09:53:44 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: PatchSellout.* //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/{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) var saleId:Int? = null /** * Emails of Sale Representatives */ @ApiMember(Description="Emails of Sale Representatives") var saleRepresentativeEmails:ArrayList = ArrayList() /** * Promoter Type ID */ @ApiMember(Description="Promoter Type ID") var promoterTypeId:String? = null companion object { private val responseType = PatchSelloutResponse::class.java } override fun getResponseType(): Any? = PatchSellout.responseType } open class PatchSelloutResponse { }