/* Options: Date: 2025-05-06 14:04:29 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: EventsSearchRequest.* //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="/Event/Search", Verbs="POST") public static class EventsSearchRequest implements IReturn { public String name = null; public String externalID = null; public String externalIdType = null; public String getName() { return name; } public EventsSearchRequest setName(String value) { this.name = value; return this; } public String getExternalID() { return externalID; } public EventsSearchRequest setExternalID(String value) { this.externalID = value; return this; } public String getExternalIdType() { return externalIdType; } public EventsSearchRequest setExternalIdType(String value) { this.externalIdType = value; return this; } private static Object responseType = EventsResult.class; public Object getResponseType() { return responseType; } } public static class EventsResult { public ArrayList items = null; public Integer statusCode = null; public String message = null; public ArrayList getItems() { return items; } public EventsResult setItems(ArrayList value) { this.items = value; return this; } public Integer getStatusCode() { return statusCode; } public EventsResult setStatusCode(Integer value) { this.statusCode = value; return this; } public String getMessage() { return message; } public EventsResult setMessage(String value) { this.message = value; return this; } } public static class Event { public Integer id = null; public String name = null; public String description = null; public String externalReference = null; public Date timeOfEvent = null; public Integer eventLocationId = null; public Integer eventSeriesId = null; public Integer eventOwnerId = null; public Boolean eventActive = null; public String defaultValues = null; public String externalReferenceType = null; public Boolean postponedNoDate = null; public String awayTeamExternalId = null; public String sportGenderId = null; public Boolean saleIsActive = null; public String seatingImageUrl = null; public Integer venueId = null; public Integer awayTeamOwnerId = null; public String detailedDescription = null; public String imageUrl = null; public String directAccessCode = null; public String imageUrl2 = null; public Boolean hideEvent = null; public Boolean ownerCardsNotAllowed = null; public Date endOfEvent = null; public Date endOfEventUTC = null; public String timeZone = null; public Date timeOfEventUTC = null; public Integer getId() { return id; } public Event setId(Integer value) { this.id = value; return this; } public String getName() { return name; } public Event setName(String value) { this.name = value; return this; } public String getDescription() { return description; } public Event setDescription(String value) { this.description = value; return this; } public String getExternalReference() { return externalReference; } public Event setExternalReference(String value) { this.externalReference = value; return this; } public Date getTimeOfEvent() { return timeOfEvent; } public Event setTimeOfEvent(Date value) { this.timeOfEvent = value; return this; } public Integer getEventLocationId() { return eventLocationId; } public Event setEventLocationId(Integer value) { this.eventLocationId = value; return this; } public Integer getEventSeriesId() { return eventSeriesId; } public Event setEventSeriesId(Integer value) { this.eventSeriesId = value; return this; } public Integer getEventOwnerId() { return eventOwnerId; } public Event setEventOwnerId(Integer value) { this.eventOwnerId = value; return this; } public Boolean isEventActive() { return eventActive; } public Event setEventActive(Boolean value) { this.eventActive = value; return this; } public String getDefaultValues() { return defaultValues; } public Event setDefaultValues(String value) { this.defaultValues = value; return this; } public String getExternalReferenceType() { return externalReferenceType; } public Event setExternalReferenceType(String value) { this.externalReferenceType = value; return this; } public Boolean isPostponedNoDate() { return postponedNoDate; } public Event setPostponedNoDate(Boolean value) { this.postponedNoDate = value; return this; } public String getAwayTeamExternalId() { return awayTeamExternalId; } public Event setAwayTeamExternalId(String value) { this.awayTeamExternalId = value; return this; } public String getSportGenderId() { return sportGenderId; } public Event setSportGenderId(String value) { this.sportGenderId = value; return this; } public Boolean isSaleIsActive() { return saleIsActive; } public Event setSaleIsActive(Boolean value) { this.saleIsActive = value; return this; } public String getSeatingImageUrl() { return seatingImageUrl; } public Event setSeatingImageUrl(String value) { this.seatingImageUrl = value; return this; } public Integer getVenueId() { return venueId; } public Event setVenueId(Integer value) { this.venueId = value; return this; } public Integer getAwayTeamOwnerId() { return awayTeamOwnerId; } public Event setAwayTeamOwnerId(Integer value) { this.awayTeamOwnerId = value; return this; } public String getDetailedDescription() { return detailedDescription; } public Event setDetailedDescription(String value) { this.detailedDescription = value; return this; } public String getImageUrl() { return imageUrl; } public Event setImageUrl(String value) { this.imageUrl = value; return this; } public String getDirectAccessCode() { return directAccessCode; } public Event setDirectAccessCode(String value) { this.directAccessCode = value; return this; } public String getImageUrl2() { return imageUrl2; } public Event setImageUrl2(String value) { this.imageUrl2 = value; return this; } public Boolean isHideEvent() { return hideEvent; } public Event setHideEvent(Boolean value) { this.hideEvent = value; return this; } public Boolean isOwnerCardsNotAllowed() { return ownerCardsNotAllowed; } public Event setOwnerCardsNotAllowed(Boolean value) { this.ownerCardsNotAllowed = value; return this; } public Date getEndOfEvent() { return endOfEvent; } public Event setEndOfEvent(Date value) { this.endOfEvent = value; return this; } public Date getEndOfEventUTC() { return endOfEventUTC; } public Event setEndOfEventUTC(Date value) { this.endOfEventUTC = value; return this; } public String getTimeZone() { return timeZone; } public Event setTimeZone(String value) { this.timeZone = value; return this; } public Date getTimeOfEventUTC() { return timeOfEventUTC; } public Event setTimeOfEventUTC(Date value) { this.timeOfEventUTC = value; return this; } } }