/* Options: Date: 2024-12-23 11:36:59 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://consumer-api.brovs.com //Package: //GlobalNamespace: ConsumerApi //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: AddRecentLocationRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class ConsumerApi { @Route(Path="/location/AddRecentLocation", Verbs="POST") public static class AddRecentLocationRequest implements IReturn, IPost { public String name = null; public String description = null; public Float latitude = null; public Float longitude = null; public RecentLocationType locationType = null; public ArrayList googleAddressComponents = null; public String getName() { return name; } public AddRecentLocationRequest setName(String value) { this.name = value; return this; } public String getDescription() { return description; } public AddRecentLocationRequest setDescription(String value) { this.description = value; return this; } public Float getLatitude() { return latitude; } public AddRecentLocationRequest setLatitude(Float value) { this.latitude = value; return this; } public Float getLongitude() { return longitude; } public AddRecentLocationRequest setLongitude(Float value) { this.longitude = value; return this; } public RecentLocationType getLocationType() { return locationType; } public AddRecentLocationRequest setLocationType(RecentLocationType value) { this.locationType = value; return this; } public ArrayList getGoogleAddressComponents() { return googleAddressComponents; } public AddRecentLocationRequest setGoogleAddressComponents(ArrayList value) { this.googleAddressComponents = value; return this; } private static Object responseType = AddRecentLocationResponse.class; public Object getResponseType() { return responseType; } } public static class AddRecentLocationResponse { public Boolean success = null; public Boolean isSuccess() { return success; } public AddRecentLocationResponse setSuccess(Boolean value) { this.success = value; return this; } } public static enum RecentLocationType { Home, Current, Pin, Named; } }