/* Options: Date: 2026-08-01 04:16:26 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: RoutePlanPropertyBookRequest.* //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="/v1/routeplan/propertybook", Verbs="GET,OPTIONS") public static class RoutePlanPropertyBookRequest implements IReturn { private static Object responseType = RoutePlanPropertyBookResponse.class; public Object getResponseType() { return responseType; } } public static class RoutePlanPropertyBookResponse { public ArrayList Rows = new ArrayList(); public ResponseStatus ResponseStatus = null; public ArrayList getRows() { return Rows; } public RoutePlanPropertyBookResponse setRows(ArrayList value) { this.Rows = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public RoutePlanPropertyBookResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } public static class RoutePlanPropertyRow { public Integer AgreementID = null; public String Name = null; public String Zip = null; public String Area = null; public Integer DurationMin = null; public String Frequency = null; public String ServiceType = null; public String Acreage = null; public Integer Dow = null; public Integer getAgreementID() { return AgreementID; } public RoutePlanPropertyRow setAgreementID(Integer value) { this.AgreementID = value; return this; } public String getName() { return Name; } public RoutePlanPropertyRow setName(String value) { this.Name = value; return this; } public String getZip() { return Zip; } public RoutePlanPropertyRow setZip(String value) { this.Zip = value; return this; } public String getArea() { return Area; } public RoutePlanPropertyRow setArea(String value) { this.Area = value; return this; } public Integer getDurationMin() { return DurationMin; } public RoutePlanPropertyRow setDurationMin(Integer value) { this.DurationMin = value; return this; } public String getFrequency() { return Frequency; } public RoutePlanPropertyRow setFrequency(String value) { this.Frequency = value; return this; } public String getServiceType() { return ServiceType; } public RoutePlanPropertyRow setServiceType(String value) { this.ServiceType = value; return this; } public String getAcreage() { return Acreage; } public RoutePlanPropertyRow setAcreage(String value) { this.Acreage = value; return this; } public Integer getDow() { return Dow; } public RoutePlanPropertyRow setDow(Integer value) { this.Dow = value; return this; } } }