/* Options: Date: 2026-05-19 09:49:18 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: GetInterests.* //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="/interests/{brand}/{posCode}", Verbs="GET") public static class GetInterests implements IReturn { /** * Brand */ @ApiMember(Description="Brand", IsRequired=true) public String brand = null; /** * POS Legacy */ @ApiMember(Description="POS Legacy", IsRequired=true) public String posCode = null; public String getBrand() { return brand; } public GetInterests setBrand(String value) { this.brand = value; return this; } public String getPosCode() { return posCode; } public GetInterests setPosCode(String value) { this.posCode = value; return this; } private static Object responseType = GetInterestsResponse.class; public Object getResponseType() { return responseType; } } public static class GetInterestsResponse extends ArrayList { } public static class Interest { /** * Interest description */ @ApiMember(Description="Interest description", IsRequired=true) public String interest = null; /** * SAP Interest ID, e.g. 'CA-1' */ @ApiMember(Description="SAP Interest ID, e.g. 'CA-1'", IsRequired=true) public String sapInterestId = null; /** * Interest description translation */ @ApiMember(Description="Interest description translation") public String translation = null; public String getInterest() { return interest; } public Interest setInterest(String value) { this.interest = value; return this; } public String getSapInterestId() { return sapInterestId; } public Interest setSapInterestId(String value) { this.sapInterestId = value; return this; } public String getTranslation() { return translation; } public Interest setTranslation(String value) { this.translation = value; return this; } } }