/* Options: Date: 2026-08-27 06:56:46 Version: 10.08 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: GetEventTypes.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/eventTypes", Verbs="GET") public static class GetEventTypes implements IReturn { private static Object responseType = GetEventTypesResponse.class; public Object getResponseType() { return responseType; } } public static class GetEventTypesResponse extends ArrayList { } public static class EventType { /** * Booster Event Type */ @ApiMember(Description="Booster Event Type", IsRequired=true) public String eventType = null; /** * Event type translation */ @ApiMember(Description="Event type translation", IsRequired=true) public String translation = null; public String getEventType() { return eventType; } public EventType setEventType(String value) { this.eventType = value; return this; } public String getTranslation() { return translation; } public EventType setTranslation(String value) { this.translation = value; return this; } } }