/* 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: GetHobbies.* //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="/hobbies/{brand}/{posCode}", Verbs="GET") public static class GetHobbies 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 GetHobbies setBrand(String value) { this.brand = value; return this; } public String getPosCode() { return posCode; } public GetHobbies setPosCode(String value) { this.posCode = value; return this; } private static Object responseType = GetHobbiesResponse.class; public Object getResponseType() { return responseType; } } public static class GetHobbiesResponse extends ArrayList { } public static class Hobby { /** * Hobby description */ @ApiMember(Description="Hobby description", IsRequired=true) public String hobby = null; /** * SAP Hobby ID, e.g. 'ART' */ @ApiMember(Description="SAP Hobby ID, e.g. 'ART'", IsRequired=true) public String sapHobbyId = null; /** * Hobby description translation */ @ApiMember(Description="Hobby description translation") public String translation = null; public String getHobby() { return hobby; } public Hobby setHobby(String value) { this.hobby = value; return this; } public String getSapHobbyId() { return sapHobbyId; } public Hobby setSapHobbyId(String value) { this.sapHobbyId = value; return this; } public String getTranslation() { return translation; } public Hobby setTranslation(String value) { this.translation = value; return this; } } }