/* Options: Date: 2026-06-27 20:30:58 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AgreementPlannerRequest.* //ExcludeTypes: //InitializeCollections: True //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.* @Route(Path="/v1/serviceagreement/planner", Verbs="GET,OPTIONS") open class AgreementPlannerRequest : IReturn { open var From:String? = null open var Scope:String? = null companion object { private val responseType = AgreementPlannerResponse::class.java } override fun getResponseType(): Any? = AgreementPlannerRequest.responseType } open class AgreementPlannerResponse { open var ResponseStatus:ResponseStatus? = null open var FromIso:String? = null open var ToIso:String? = null open var WeekdayCapacity:Int? = null open var Rows:ArrayList = ArrayList() open var Crews:ArrayList = ArrayList() } open class AgreementPlannerRow { open var AgreementID:Int? = null open var Name:String? = null open var ProjectName:String? = null open var ServiceType:String? = null open var Area:String? = null open var Zip:String? = null open var Frequency:String? = null open var NextDueIso:String? = null open var NextDueLabel:String? = null open var Overdue:Boolean? = null open var DurationMin:Int? = null open var EligibleDow:ArrayList = ArrayList() open var ScheduledDow:Int? = null open var WeeklyAll:Boolean? = null open var DueThisWeek:Boolean? = null open var AssignedCrewID:Int? = null open var AssignedCrewName:String? = null open var ThisWeekJobID:Int? = null open var ThisWeekBackingJobID:Int? = null open var ThisWeekOccIso:String? = null open var ThisWeekStandingIso:String? = null open var StandingDow:Int? = null open var Moved:Boolean? = null } open class AgreementPlannerCrew { open var CrewID:Int? = null open var CrewName:String? = null open var CrewColor:String? = null }