/* Options: Date: 2026-07-08 20:27:06 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: JobDependencyUpdateRequest.* //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/{JobDependencyID}", Verbs="PUT,OPTIONS") open class JobDependencyUpdateRequest : IReturn { open var ProjectID:Int? = null open var JobDependencyID:Int? = null open var DependencyType:String? = null open var LagDays:Int? = null companion object { private val responseType = JobDependencyResponse::class.java } override fun getResponseType(): Any? = JobDependencyUpdateRequest.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 }