/* Options: Date: 2026-08-01 09:41:50 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: AgreementNeedsSetRequest.* //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/territory/agreementneeds", Verbs="POST,OPTIONS") open class AgreementNeedsSetRequest : IReturn { open var AgreementID:Int? = null open var EquipmentIDs:ArrayList = ArrayList() companion object { private val responseType = TerritoryResponse::class.java } override fun getResponseType(): Any? = AgreementNeedsSetRequest.responseType } open class TerritoryResponse { open var ResponseStatus:ResponseStatus? = null open var Territories:ArrayList = ArrayList() open var Properties:ArrayList = ArrayList() open var CrewEquipment:ArrayList = ArrayList() open var AgreementNeeds:ArrayList = ArrayList() } open class Territory { open var TerritoryID:Int? = null open var TerritoryUID:String? = null open var Name:String? = null open var Color:String? = null open var ZipCsv:String? = null open var CrewID:Int? = null open var CrewName:String? = null open var Active:Boolean? = null } open class TerritoryPropertyRow { open var TerritoryID:Int? = null open var AgreementID:Int? = null } open class CrewEquipmentRow { open var CrewID:Int? = null open var EquipmentID:Int? = null open var EquipmentName:String? = null } open class AgreementNeedRow { open var AgreementID:Int? = null open var EquipmentID:Int? = null open var EquipmentName:String? = null }