/* Options: Date: 2025-05-06 14:51:20 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: VenuesSearchRequest.* //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="/Venues", Verbs="POST") public static class VenuesSearchRequest implements IReturn { public String name = null; public String countryCode = null; public String getName() { return name; } public VenuesSearchRequest setName(String value) { this.name = value; return this; } public String getCountryCode() { return countryCode; } public VenuesSearchRequest setCountryCode(String value) { this.countryCode = value; return this; } private static Object responseType = VenuesResult.class; public Object getResponseType() { return responseType; } } public static class VenuesResult { public ArrayList items = null; public Integer statusCode = null; public String message = null; public ArrayList getItems() { return items; } public VenuesResult setItems(ArrayList value) { this.items = value; return this; } public Integer getStatusCode() { return statusCode; } public VenuesResult setStatusCode(Integer value) { this.statusCode = value; return this; } public String getMessage() { return message; } public VenuesResult setMessage(String value) { this.message = value; return this; } } public static class Venue { public Integer id = null; public String name = null; public String countryCode = null; public BigDecimal latitude = null; public BigDecimal longitude = null; public Integer getId() { return id; } public Venue setId(Integer value) { this.id = value; return this; } public String getName() { return name; } public Venue setName(String value) { this.name = value; return this; } public String getCountryCode() { return countryCode; } public Venue setCountryCode(String value) { this.countryCode = value; return this; } public BigDecimal getLatitude() { return latitude; } public Venue setLatitude(BigDecimal value) { this.latitude = value; return this; } public BigDecimal getLongitude() { return longitude; } public Venue setLongitude(BigDecimal value) { this.longitude = value; return this; } } }