/* Options: Date: 2026-05-19 09:52:25 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: DeleteEquipmentWarrantyPartner.* //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/{brand}/{posCode}/{cpoSelloutId}", Verbs="DELETE") public static class DeleteEquipmentWarrantyPartner implements IReturn { /** * Brand Trigram, e.g. CAR, IWC */ @ApiMember(Description="Brand Trigram, e.g. CAR, IWC") public String brand = null; /** * Richemont POS code */ @ApiMember(Description="Richemont POS code", IsRequired=true) public String posCode = null; /** * Cpo sellout Id, e.g a0RbW000000qIyXUAU */ @ApiMember(Description="Cpo sellout Id, e.g a0RbW000000qIyXUAU", IsRequired=true) public String cpoSelloutId = null; public String getBrand() { return brand; } public DeleteEquipmentWarrantyPartner setBrand(String value) { this.brand = value; return this; } public String getPosCode() { return posCode; } public DeleteEquipmentWarrantyPartner setPosCode(String value) { this.posCode = value; return this; } public String getCpoSelloutId() { return cpoSelloutId; } public DeleteEquipmentWarrantyPartner setCpoSelloutId(String value) { this.cpoSelloutId = value; return this; } private static Object responseType = DeleteEquipmentWarrantyPartnerResponse.class; public Object getResponseType() { return responseType; } } public static class DeleteEquipmentWarrantyPartnerResponse { } }