/* Options: Date: 2026-05-19 10:59:15 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: GetSelloutEligibility.* //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}/eligibility", Verbs="GET") public static class GetSelloutEligibility implements IReturn { /** * Sale Id */ @ApiMember(Description="Sale Id", IsRequired=true) public Integer saleId = null; public Integer getSaleId() { return saleId; } public GetSelloutEligibility setSaleId(Integer value) { this.saleId = value; return this; } private static Object responseType = SelloutEligibilityResponse.class; public Object getResponseType() { return responseType; } } public static class SelloutEligibilityResponse { /** * Sale detail id */ @ApiMember(Description="Sale detail id", IsRequired=true) public Integer saleDetailId = null; /** * Can be extented */ @ApiMember(Description="Can be extented", IsRequired=true) public Boolean canBeExtended = null; public Integer getSaleDetailId() { return saleDetailId; } public SelloutEligibilityResponse setSaleDetailId(Integer value) { this.saleDetailId = value; return this; } public Boolean isCanBeExtended() { return canBeExtended; } public SelloutEligibilityResponse setCanBeExtended(Boolean value) { this.canBeExtended = value; return this; } } }