/* Options: Date: 2025-05-06 14:07:31 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: VenueCreateRequest.* //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="/Venue", Verbs="POST") public static class VenueCreateRequest implements IReturn { public Venue item = null; public Venue getItem() { return item; } public VenueCreateRequest setItem(Venue value) { this.item = value; return this; } private static Object responseType = VenueResult.class; public Object getResponseType() { return responseType; } } public static class VenueResult { public Venue item = null; public Integer statusCode = null; public String message = null; public Venue getItem() { return item; } public VenueResult setItem(Venue value) { this.item = value; return this; } public Integer getStatusCode() { return statusCode; } public VenueResult setStatusCode(Integer value) { this.statusCode = value; return this; } public String getMessage() { return message; } public VenueResult 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; } } }