/* Options: Date: 2026-07-08 20:33:33 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: JobDependencyListRequest.* //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/project/{ProjectID}/dependencies", Verbs="GET,OPTIONS") open class JobDependencyListRequest : IReturn { open var ProjectID:Int? = null companion object { private val responseType = JobDependencyResponse::class.java } override fun getResponseType(): Any? = JobDependencyListRequest.responseType } open class JobDependencyResponse { open var ResponseStatus:ResponseStatus? = null open var ProjectID:Int? = null open var Dependencies:ArrayList = ArrayList() } open class JobDependency { open var JobDependencyID:Int? = null open var TenantId:UUID? = null open var ProjectID:Int? = null open var PredecessorJobID:Int? = null open var SuccessorJobID:Int? = null open var DependencyType:String? = null open var LagDays:Int? = null open var CreatedBy:String? = null open var CreatedAt:Date? = null open var UpdatedAt:Date? = null }