/* Options: Date: 2026-05-19 04:33:31 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-app.azurewebsites.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: EventsInSameSeriesRequest.* //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="/Events/InSameSeries/{EventId}", Verbs="GET") public static class EventsInSameSeriesRequest implements IReturn { public Integer eventId = null; public Integer getEventId() { return eventId; } public EventsInSameSeriesRequest setEventId(Integer value) { this.eventId = value; return this; } private static Object responseType = EventsInSameSeriesResult.class; public Object getResponseType() { return responseType; } } public static class EventsInSameSeriesResult { public Integer statusCode = null; public String message = null; public Integer eventSeriesId = null; public ArrayList events = null; public Integer getStatusCode() { return statusCode; } public EventsInSameSeriesResult setStatusCode(Integer value) { this.statusCode = value; return this; } public String getMessage() { return message; } public EventsInSameSeriesResult setMessage(String value) { this.message = value; return this; } public Integer getEventSeriesId() { return eventSeriesId; } public EventsInSameSeriesResult setEventSeriesId(Integer value) { this.eventSeriesId = value; return this; } public ArrayList getEvents() { return events; } public EventsInSameSeriesResult setEvents(ArrayList value) { this.events = value; return this; } } public static class EventInSeriesSummary { public Integer id = null; public String name = null; public Date timeOfEvent = null; public Boolean eventActive = null; public Integer getId() { return id; } public EventInSeriesSummary setId(Integer value) { this.id = value; return this; } public String getName() { return name; } public EventInSeriesSummary setName(String value) { this.name = value; return this; } public Date getTimeOfEvent() { return timeOfEvent; } public EventInSeriesSummary setTimeOfEvent(Date value) { this.timeOfEvent = value; return this; } public Boolean isEventActive() { return eventActive; } public EventInSeriesSummary setEventActive(Boolean value) { this.eventActive = value; return this; } } }