' Options: 'Date: 2026-03-31 19:57:54 'Version: 8.80 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://test-do-services.klokgroep.nl/api ' '''GlobalNamespace: '''MakePartial: True '''MakeVirtual: True '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: False '''ExportValueTypes: False 'IncludeTypes: GetTaskForEntityOperation.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.IO Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports System.Drawing Imports IDB.Workflow.API.DTOs Imports IDB.Workflow.API.Operations Namespace Global Namespace IDB.Workflow.API.DTOs Public Partial Class WorkflowTaskActionDTO Public Overridable Property BeginGroup As Boolean Public Overridable Property DigiOfficeIcon As String Public Overridable Property Enabled As Boolean Public Overridable Property FontAwesomeIcon As String Public Overridable Property Hint As String Public Overridable Property Name As String Public Overridable Property ShowTextForRootItems As Boolean Public Overridable Property Text As String Public Overridable Property Url As String Public Overridable Property Items As List(Of WorkflowTaskActionDTO) End Class Public Partial Class WorkflowTaskDTO Public Overridable Property ID As Integer Public Overridable Property Name As String Public Overridable Property WorkflowID As Integer Public Overridable Property WorkflowDescription As String Public Overridable Property RootWorkflowID As Integer Public Overridable Property TransitionID As Guid Public Overridable Property TransitionName As String Public Overridable Property ActivationID As Guid? Public Overridable Property TypeID As Integer Public Overridable Property TypeDescription As String Public Overridable Property StatusID As Integer Public Overridable Property StatusDescription As String Public Overridable Property UserID As Integer? Public Overridable Property Active As Boolean Public Overridable Property OfferedDate As Date? Public Overridable Property AssignedDate As Date? Public Overridable Property StartDate As Date? Public Overridable Property ExpirationDate As Date? Public Overridable Property Order As Integer Public Overridable Property Progress As Single? Public Overridable Property FinishedDate As Date? Public Overridable Property FinishedByUserID As Integer? Public Overridable Property FinishedDocumentID As Guid? Public Overridable Property Read As Boolean Public Overridable Property DeferDate As Date? Public Overridable Property DeferReason As String Public Overridable Property Reason As String Public Overridable Property Urgent As Boolean Public Overridable Property Status As String Public Overridable Property AvailableActions As IEnumerable(Of WorkflowTaskActionDTO) Public Overridable Property FinishActions As IEnumerable(Of WorkflowTaskActionDTO) Public Overridable Property CommentActions As IEnumerable(Of WorkflowTaskActionDTO) Public Overridable Property DocumentActions As IEnumerable(Of WorkflowTaskActionDTO) Public Overridable Property NumberOfComments As Integer Public Overridable Property RelativeDetailLink As String Public Overridable Property FirstSideStepID As Integer Public Overridable Property FirstSideStepOmschr As String Public Overridable Property FirstSideStepDetailLink As String Public Overridable Property IsSideStepOfWorkflowID As Integer? Public Overridable Property IsSideStepOfWorkflowOmschr As String Public Overridable Property IsSideStepOfWorkflowDetailLink As String Public Overridable Property IsSideStepOfTaskID As Integer? Public Overridable Property IsSideStepOfTaskOmschr As String Public Overridable Property IsSideStepOfTaskDetailLink As String Public Overridable Property IsObservedID As Integer? Public Overridable Property IsObservedOmschr As String Public Overridable Property IsObservedDetailLink As String End Class End Namespace Namespace IDB.Workflow.API.Operations ''' '''Get workflow tasks for entity. ''' Public Partial Class GetTaskForEntityOperation Implements IReturn(Of List(Of WorkflowTaskDTO)) ''' '''Name of the entity ''' Public Overridable Property EntityName As String ''' '''Primary key of the entity ''' Public Overridable Property EntityID As String End Class End Namespace End Namespace