/* Options: Date: 2025-05-06 19:23:19 Version: 8.70 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://unstable-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.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; 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 = new ArrayList(); 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 = new ArrayList(); 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; } } }