/* Options: Date: 2025-12-06 09:45:55 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: AllAgentTaskRequest.* //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/AllAgentTask", Verbs="GET,POST,PUT,OPTIONS") open class AllAgentTaskRequest : IReturn { companion object { private val responseType = AllAgentTaskResponse::class.java } override fun getResponseType(): Any? = AllAgentTaskRequest.responseType } open class AllAgentTaskResponse { open var ResponseStatus:ResponseStatus? = null open var Task:ArrayList = ArrayList() } open class AgentTaskExtended : AgentTask() { open var AssignedToName:String? = null open var RelatedToName:String? = null } open class AgentTask { open var TaskId:UUID? = null open var Description:String? = null open var DueDate:Date? = null open var AssignedToAgentId:Int? = null open var RelatedToAgentId:Int? = null open var CreatedBy:Int? = null open var DateCreated:Date? = null open var DateCompleted:Date? = null open var CompletedBy:Int? = null open var DateDeleted:Date? = null open var DeletedBy:Int? = null }