/* Options: Date: 2025-06-13 06:36:51 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://ws.jimsnwa.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetLayerMapsRQ.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route("/mobile/maps/layer") public static class GetLayerMapsRQ implements IReturn { public String Layer = null; public String Access = null; public String getLayer() { return Layer; } public GetLayerMapsRQ setLayer(String value) { this.Layer = value; return this; } public String getAccess() { return Access; } public GetLayerMapsRQ setAccess(String value) { this.Access = value; return this; } private static Object responseType = GetLayerMapsRS.class; public Object getResponseType() { return responseType; } } public static class GetLayerMapsRS { public String Code = null; public String ErrorMessage = null; public ArrayList Data = null; public String getCode() { return Code; } public GetLayerMapsRS setCode(String value) { this.Code = value; return this; } public String getErrorMessage() { return ErrorMessage; } public GetLayerMapsRS setErrorMessage(String value) { this.ErrorMessage = value; return this; } public ArrayList getData() { return Data; } public GetLayerMapsRS setData(ArrayList value) { this.Data = value; return this; } } public static class LayerData { public Integer code = null; public String name = null; public Double latitude = null; public Double longitude = null; public String complexinfo = null; public Integer getCode() { return code; } public LayerData setCode(Integer value) { this.code = value; return this; } public String getName() { return name; } public LayerData setName(String value) { this.name = value; return this; } public Double getLatitude() { return latitude; } public LayerData setLatitude(Double value) { this.latitude = value; return this; } public Double getLongitude() { return longitude; } public LayerData setLongitude(Double value) { this.longitude = value; return this; } public String getComplexinfo() { return complexinfo; } public LayerData setComplexinfo(String value) { this.complexinfo = value; return this; } } }