/* Options: Date: 2026-05-19 09:48:59 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: GetCountries.* //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="/countries", Verbs="GET") public static class GetCountries implements IReturn { private static Object responseType = GetCountriesResponse.class; public Object getResponseType() { return responseType; } } public static class GetCountriesResponse extends ArrayList { } public static class Country { /** * Country id */ @ApiMember(Description="Country id", IsRequired=true) public String countryId = null; /** * Country description */ @ApiMember(Description="Country description", IsRequired=true) public String countryDs = null; /** * Trasnlation of country description based on user language settings */ @ApiMember(Description="Trasnlation of country description based on user language settings") public String translation = null; /** * Telephone prefix */ @ApiMember(Description="Telephone prefix", IsRequired=true) public String telephonePrefix = null; public String getCountryId() { return countryId; } public Country setCountryId(String value) { this.countryId = value; return this; } public String getCountryDs() { return countryDs; } public Country setCountryDs(String value) { this.countryDs = value; return this; } public String getTranslation() { return translation; } public Country setTranslation(String value) { this.translation = value; return this; } public String getTelephonePrefix() { return telephonePrefix; } public Country setTelephonePrefix(String value) { this.telephonePrefix = value; return this; } } }