/* Options: Date: 2026-06-01 14:59:55 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.imglobal.com/RestApi //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetScheduledTasks.* //ExcludeTypes: //InitializeCollections: False //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="/sitefinity/scheduling/scheduled-tasks", Verbs="GET") open class GetScheduledTasks : IReturn { open var Skip:Int? = null open var Take:Int? = null open var SearchTerm:String? = null open var OrderBy:OrderByType? = null open var FilterBy:FilterByType? = null companion object { private val responseType = GetScheduledTasksResponse::class.java } override fun getResponseType(): Any? = GetScheduledTasks.responseType } open class GetScheduledTasksResponse { open var Items:ArrayList? = null open var TotalCount:Int? = null } enum class OrderByType { ScheduledFor, LastExecutionDate, Status, NameAsc, NameDesc, } enum class FilterByType { All, Pending, Started, Stopped, Failed, Recurring, } open class ScheduledTaskViewModel { open var TaskId:UUID? = null open var Name:String? = null open var Title:String? = null open var Status:String? = null open var ErrorMessage:String? = null open var RecurringInterval:String? = null open var ScheduledForDate:Date? = null open var LastExecutionTime:Date? = null open var Hash:String? = null }