/* Options: Date: 2025-05-06 14:39:36 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-autoupdates-live.smartnewapis.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: EventsWithLocationRequest.* //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="/EventsWithLocation", Verbs="GET") // @Route(Path="/EventsWithLocation/MaxDays/{MaxDays}", Verbs="POST/GET") public static class EventsWithLocationRequest implements IReturn { public Integer maxDays = null; public Integer getMaxDays() { return maxDays; } public EventsWithLocationRequest setMaxDays(Integer value) { this.maxDays = value; return this; } private static Object responseType = EventsWithLocationResult.class; public Object getResponseType() { return responseType; } } public static class EventsWithLocationResult { public Status status = null; public ArrayList data = null; public Status getStatus() { return status; } public EventsWithLocationResult setStatus(Status value) { this.status = value; return this; } public ArrayList getData() { return data; } public EventsWithLocationResult setData(ArrayList value) { this.data = value; return this; } } public static class Status { public Integer statusCode = null; public String statusMessage = null; public String statusDetails = null; public Integer getStatusCode() { return statusCode; } public Status setStatusCode(Integer value) { this.statusCode = value; return this; } public String getStatusMessage() { return statusMessage; } public Status setStatusMessage(String value) { this.statusMessage = value; return this; } public String getStatusDetails() { return statusDetails; } public Status setStatusDetails(String value) { this.statusDetails = value; return this; } } public static class EventWithLocation { public Integer id = null; public String name = null; public String description = null; public Date timeOfEvent = null; public Boolean eventActive = null; public Boolean eventSeriesActive = null; public String eventLocationName = null; public BigDecimal latitude = null; public BigDecimal longitude = null; public String addressName = null; public String addressLine = null; public String zip = null; public String city = null; public String countryCode = null; public Boolean postPonedNoDate = null; public Date endOfEvent = null; public Integer getId() { return id; } public EventWithLocation setId(Integer value) { this.id = value; return this; } public String getName() { return name; } public EventWithLocation setName(String value) { this.name = value; return this; } public String getDescription() { return description; } public EventWithLocation setDescription(String value) { this.description = value; return this; } public Date getTimeOfEvent() { return timeOfEvent; } public EventWithLocation setTimeOfEvent(Date value) { this.timeOfEvent = value; return this; } public Boolean isEventActive() { return eventActive; } public EventWithLocation setEventActive(Boolean value) { this.eventActive = value; return this; } public Boolean isEventSeriesActive() { return eventSeriesActive; } public EventWithLocation setEventSeriesActive(Boolean value) { this.eventSeriesActive = value; return this; } public String getEventLocationName() { return eventLocationName; } public EventWithLocation setEventLocationName(String value) { this.eventLocationName = value; return this; } public BigDecimal getLatitude() { return latitude; } public EventWithLocation setLatitude(BigDecimal value) { this.latitude = value; return this; } public BigDecimal getLongitude() { return longitude; } public EventWithLocation setLongitude(BigDecimal value) { this.longitude = value; return this; } public String getAddressName() { return addressName; } public EventWithLocation setAddressName(String value) { this.addressName = value; return this; } public String getAddressLine() { return addressLine; } public EventWithLocation setAddressLine(String value) { this.addressLine = value; return this; } public String getZip() { return zip; } public EventWithLocation setZip(String value) { this.zip = value; return this; } public String getCity() { return city; } public EventWithLocation setCity(String value) { this.city = value; return this; } public String getCountryCode() { return countryCode; } public EventWithLocation setCountryCode(String value) { this.countryCode = value; return this; } public Boolean isPostPonedNoDate() { return postPonedNoDate; } public EventWithLocation setPostPonedNoDate(Boolean value) { this.postPonedNoDate = value; return this; } public Date getEndOfEvent() { return endOfEvent; } public EventWithLocation setEndOfEvent(Date value) { this.endOfEvent = value; return this; } } }