/* Options: Date: 2026-05-19 09:52:43 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: UpdateEquipmentWarrantyCustomer.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/partner/warranty/equipment/customer", Verbs="PUT") public static class UpdateEquipmentWarrantyCustomer implements IReturn { /** * Brand Trigram, e.g. CAR, IWC */ @ApiMember(Description="Brand Trigram, e.g. CAR, IWC") public String brand = null; /** * POS code, e.g. 102048 */ @ApiMember(Description="POS code, e.g. 102048", IsRequired=true) public String posCode = null; /** * Sales Force sellout ID, e.g a0RbW000000qIyXUAU */ @ApiMember(Description="Sales Force sellout ID, e.g a0RbW000000qIyXUAU", IsRequired=true) public String sfSelloutId = null; /** * Booster customer ID, e.g 12345678 */ @ApiMember(Description="Booster customer ID, e.g 12345678", IsRequired=true) public Integer boosterCustomerId = null; public String getBrand() { return brand; } public UpdateEquipmentWarrantyCustomer setBrand(String value) { this.brand = value; return this; } public String getPosCode() { return posCode; } public UpdateEquipmentWarrantyCustomer setPosCode(String value) { this.posCode = value; return this; } public String getSfSelloutId() { return sfSelloutId; } public UpdateEquipmentWarrantyCustomer setSfSelloutId(String value) { this.sfSelloutId = value; return this; } public Integer getBoosterCustomerId() { return boosterCustomerId; } public UpdateEquipmentWarrantyCustomer setBoosterCustomerId(Integer value) { this.boosterCustomerId = value; return this; } private static Object responseType = UpdateEquipmentWarrantyCustomerResponse.class; public Object getResponseType() { return responseType; } } public static class UpdateEquipmentWarrantyCustomerResponse { } }