/* Options: Date: 2026-05-19 09:51:27 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: PatchSellout.* //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="/warranty/{saleId}", Verbs="PATCH") public static class PatchSellout implements 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) public Integer saleId = null; /** * Emails of Sale Representatives */ @ApiMember(Description="Emails of Sale Representatives") public ArrayList saleRepresentativeEmails = null; /** * Promoter Type ID */ @ApiMember(Description="Promoter Type ID") public String promoterTypeId = null; public Integer getSaleId() { return saleId; } public PatchSellout setSaleId(Integer value) { this.saleId = value; return this; } public ArrayList getSaleRepresentativeEmails() { return saleRepresentativeEmails; } public PatchSellout setSaleRepresentativeEmails(ArrayList value) { this.saleRepresentativeEmails = value; return this; } public String getPromoterTypeId() { return promoterTypeId; } public PatchSellout setPromoterTypeId(String value) { this.promoterTypeId = value; return this; } private static Object responseType = PatchSelloutResponse.class; public Object getResponseType() { return responseType; } } public static class PatchSelloutResponse { } }