/* Options: Date: 2026-06-27 20:25:45 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: AgreementPlannerRequest.* //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/serviceagreement/planner", Verbs="GET,OPTIONS") public static class AgreementPlannerRequest implements IReturn { public String From = null; public String Scope = null; public String getFrom() { return From; } public AgreementPlannerRequest setFrom(String value) { this.From = value; return this; } public String getScope() { return Scope; } public AgreementPlannerRequest setScope(String value) { this.Scope = value; return this; } private static Object responseType = AgreementPlannerResponse.class; public Object getResponseType() { return responseType; } } public static class AgreementPlannerResponse { public ResponseStatus ResponseStatus = null; public String FromIso = null; public String ToIso = null; public Integer WeekdayCapacity = null; public ArrayList Rows = new ArrayList(); public ArrayList Crews = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public AgreementPlannerResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public String getFromIso() { return FromIso; } public AgreementPlannerResponse setFromIso(String value) { this.FromIso = value; return this; } public String getToIso() { return ToIso; } public AgreementPlannerResponse setToIso(String value) { this.ToIso = value; return this; } public Integer getWeekdayCapacity() { return WeekdayCapacity; } public AgreementPlannerResponse setWeekdayCapacity(Integer value) { this.WeekdayCapacity = value; return this; } public ArrayList getRows() { return Rows; } public AgreementPlannerResponse setRows(ArrayList value) { this.Rows = value; return this; } public ArrayList getCrews() { return Crews; } public AgreementPlannerResponse setCrews(ArrayList value) { this.Crews = value; return this; } } public static class AgreementPlannerRow { public Integer AgreementID = null; public String Name = null; public String ProjectName = null; public String ServiceType = null; public String Area = null; public String Zip = null; public String Frequency = null; public String NextDueIso = null; public String NextDueLabel = null; public Boolean Overdue = null; public Integer DurationMin = null; public ArrayList EligibleDow = new ArrayList(); public Integer ScheduledDow = null; public Boolean WeeklyAll = null; public Boolean DueThisWeek = null; public Integer AssignedCrewID = null; public String AssignedCrewName = null; public Integer ThisWeekJobID = null; public Integer ThisWeekBackingJobID = null; public String ThisWeekOccIso = null; public String ThisWeekStandingIso = null; public Integer StandingDow = null; public Boolean Moved = null; public Integer getAgreementID() { return AgreementID; } public AgreementPlannerRow setAgreementID(Integer value) { this.AgreementID = value; return this; } public String getName() { return Name; } public AgreementPlannerRow setName(String value) { this.Name = value; return this; } public String getProjectName() { return ProjectName; } public AgreementPlannerRow setProjectName(String value) { this.ProjectName = value; return this; } public String getServiceType() { return ServiceType; } public AgreementPlannerRow setServiceType(String value) { this.ServiceType = value; return this; } public String getArea() { return Area; } public AgreementPlannerRow setArea(String value) { this.Area = value; return this; } public String getZip() { return Zip; } public AgreementPlannerRow setZip(String value) { this.Zip = value; return this; } public String getFrequency() { return Frequency; } public AgreementPlannerRow setFrequency(String value) { this.Frequency = value; return this; } public String getNextDueIso() { return NextDueIso; } public AgreementPlannerRow setNextDueIso(String value) { this.NextDueIso = value; return this; } public String getNextDueLabel() { return NextDueLabel; } public AgreementPlannerRow setNextDueLabel(String value) { this.NextDueLabel = value; return this; } public Boolean isOverdue() { return Overdue; } public AgreementPlannerRow setOverdue(Boolean value) { this.Overdue = value; return this; } public Integer getDurationMin() { return DurationMin; } public AgreementPlannerRow setDurationMin(Integer value) { this.DurationMin = value; return this; } public ArrayList getEligibleDow() { return EligibleDow; } public AgreementPlannerRow setEligibleDow(ArrayList value) { this.EligibleDow = value; return this; } public Integer getScheduledDow() { return ScheduledDow; } public AgreementPlannerRow setScheduledDow(Integer value) { this.ScheduledDow = value; return this; } public Boolean isWeeklyAll() { return WeeklyAll; } public AgreementPlannerRow setWeeklyAll(Boolean value) { this.WeeklyAll = value; return this; } public Boolean isDueThisWeek() { return DueThisWeek; } public AgreementPlannerRow setDueThisWeek(Boolean value) { this.DueThisWeek = value; return this; } public Integer getAssignedCrewID() { return AssignedCrewID; } public AgreementPlannerRow setAssignedCrewID(Integer value) { this.AssignedCrewID = value; return this; } public String getAssignedCrewName() { return AssignedCrewName; } public AgreementPlannerRow setAssignedCrewName(String value) { this.AssignedCrewName = value; return this; } public Integer getThisWeekJobID() { return ThisWeekJobID; } public AgreementPlannerRow setThisWeekJobID(Integer value) { this.ThisWeekJobID = value; return this; } public Integer getThisWeekBackingJobID() { return ThisWeekBackingJobID; } public AgreementPlannerRow setThisWeekBackingJobID(Integer value) { this.ThisWeekBackingJobID = value; return this; } public String getThisWeekOccIso() { return ThisWeekOccIso; } public AgreementPlannerRow setThisWeekOccIso(String value) { this.ThisWeekOccIso = value; return this; } public String getThisWeekStandingIso() { return ThisWeekStandingIso; } public AgreementPlannerRow setThisWeekStandingIso(String value) { this.ThisWeekStandingIso = value; return this; } public Integer getStandingDow() { return StandingDow; } public AgreementPlannerRow setStandingDow(Integer value) { this.StandingDow = value; return this; } public Boolean isMoved() { return Moved; } public AgreementPlannerRow setMoved(Boolean value) { this.Moved = value; return this; } } public static class AgreementPlannerCrew { public Integer CrewID = null; public String CrewName = null; public String CrewColor = null; public Integer getCrewID() { return CrewID; } public AgreementPlannerCrew setCrewID(Integer value) { this.CrewID = value; return this; } public String getCrewName() { return CrewName; } public AgreementPlannerCrew setCrewName(String value) { this.CrewName = value; return this; } public String getCrewColor() { return CrewColor; } public AgreementPlannerCrew setCrewColor(String value) { this.CrewColor = value; return this; } } }