/* Options: Date: 2025-09-14 06:27:28 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.trackunit.com/public //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetZone.* //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 dtos { @Route(Path="/GetZone", Verbs="GET POST") // @Route(Path="/GetZone/{Id}", Verbs="GET POST") // @Route(Path="/Zone", Verbs="GET") // @Route(Path="/Zone/{Id}", Verbs="GET") @DataContract public static class GetZone implements IReturn { @DataMember public String id = null; public String getId() { return id; } public GetZone setId(String value) { this.id = value; return this; } private static Object responseType = GetZoneResponse.class; public Object getResponseType() { return responseType; } } @DataContract public static class GetZoneResponse { @DataMember public ArrayList list = null; @DataMember public ResponseStatus responseStatus = null; public ArrayList getList() { return list; } public GetZoneResponse setList(ArrayList value) { this.list = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public GetZoneResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } @DataContract public static class Zone { @DataMember public String id = null; @DataMember public String name = null; @DataMember public String note = null; @DataMember public String icon = null; @DataMember public String polygon = null; public String getId() { return id; } public Zone setId(String value) { this.id = value; return this; } public String getName() { return name; } public Zone setName(String value) { this.name = value; return this; } public String getNote() { return note; } public Zone setNote(String value) { this.note = value; return this; } public String getIcon() { return icon; } public Zone setIcon(String value) { this.icon = value; return this; } public String getPolygon() { return polygon; } public Zone setPolygon(String value) { this.polygon = value; return this; } } }