/* 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: GetLanguages.* //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="/languages", Verbs="GET") public static class GetLanguages implements IReturn { private static Object responseType = GetLanguagesResponse.class; public Object getResponseType() { return responseType; } } public static class GetLanguagesResponse extends ArrayList { } public static class Language { /** * Booster ID of the language */ @ApiMember(Description="Booster ID of the language", IsRequired=true) public String languageId = null; /** * Description of the language */ @ApiMember(Description="Description of the language", IsRequired=true) public String description = null; /** * Language description translation */ @ApiMember(Description="Language description translation", IsRequired=true) public String translation = null; public String getLanguageId() { return languageId; } public Language setLanguageId(String value) { this.languageId = value; return this; } public String getDescription() { return description; } public Language setDescription(String value) { this.description = value; return this; } public String getTranslation() { return translation; } public Language setTranslation(String value) { this.translation = value; return this; } } }