/* Options: Date: 2026-06-22 21:44:24 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: ServiceTaskRequest.* //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/servicetask", Verbs="GET,POST,PUT,OPTIONS") // @Route(Path="/v1/servicetask/{ServiceTaskID}", Verbs="GET,DELETE,OPTIONS") open class ServiceTaskRequest : IReturn { open var ServiceTaskID:Int? = null open var Task:ServiceTask? = null companion object { private val responseType = ServiceTaskResponse::class.java } override fun getResponseType(): Any? = ServiceTaskRequest.responseType } open class ServiceTaskResponse { open var ServiceTasks:ArrayList = ArrayList() open var ResponseStatus:ResponseStatus? = null } open class ServiceTask { open var ServiceTaskID:Int? = null open var ServiceTaskUID:UUID? = null open var TenantId:UUID? = null open var Name:String? = null open var Category:String? = null open var DefaultDurationMinutes:Int? = null open var SortOrder:Int? = null open var Active:Boolean? = null open var CreatedBy:String? = null open var CreatedAt:Date? = null open var UpdatedAt:Date? = null }