/* Options: Date: 2026-08-27 08:08:39 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: UpdateEquipmentWarrantyCustomer.* //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="/partner/warranty/equipment/customer", Verbs="PUT") open class UpdateEquipmentWarrantyCustomer : IReturn { /** * Brand Trigram, e.g. CAR, IWC */ @ApiMember(Description="Brand Trigram, e.g. CAR, IWC") open var brand:String? = null /** * POS code, e.g. 102048 */ @ApiMember(Description="POS code, e.g. 102048", IsRequired=true) open var posCode:String? = null /** * Sales Force sellout ID, e.g a0RbW000000qIyXUAU */ @ApiMember(Description="Sales Force sellout ID, e.g a0RbW000000qIyXUAU", IsRequired=true) open var sfSelloutId:String? = null /** * Booster customer ID, e.g 12345678 */ @ApiMember(Description="Booster customer ID, e.g 12345678", IsRequired=true) open var boosterCustomerId:Int? = null companion object { private val responseType = UpdateEquipmentWarrantyCustomerResponse::class.java } override fun getResponseType(): Any? = UpdateEquipmentWarrantyCustomer.responseType } open class UpdateEquipmentWarrantyCustomerResponse { }