/* Options: Date: 2024-12-23 11:49:17 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: GetRecentLocationRequest.* //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/GetRecentLocation", Verbs="GET") public static class GetRecentLocationRequest implements IReturn, IGet { private static Object responseType = GetRecentLocationResponse.class; public Object getResponseType() { return responseType; } } public static class GetRecentLocationResponse { public ArrayList recentLocations = null; public ArrayList getRecentLocations() { return recentLocations; } public GetRecentLocationResponse setRecentLocations(ArrayList value) { this.recentLocations = value; return this; } } public static enum RecentLocationType { Home, Current, Pin, Named; } public static class RecentLocationDto { 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 RecentLocationDto setName(String value) { this.name = value; return this; } public String getDescription() { return description; } public RecentLocationDto setDescription(String value) { this.description = value; return this; } public Float getLatitude() { return latitude; } public RecentLocationDto setLatitude(Float value) { this.latitude = value; return this; } public Float getLongitude() { return longitude; } public RecentLocationDto setLongitude(Float value) { this.longitude = value; return this; } public RecentLocationType getLocationType() { return locationType; } public RecentLocationDto setLocationType(RecentLocationType value) { this.locationType = value; return this; } public ArrayList getGoogleAddressComponents() { return googleAddressComponents; } public RecentLocationDto setGoogleAddressComponents(ArrayList value) { this.googleAddressComponents = value; return this; } } }