' Options: 'Date: 2024-10-18 04:13:54 'Version: 6.40 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://digiofficeapigateway.deltares.nl/api ' '''GlobalNamespace: '''MakePartial: True '''MakeVirtual: True '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: True '''ExportValueTypes: False 'IncludeTypes: GetWorkflowTask.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports System.Drawing Imports IDB.API.DTO.Workflow Imports IDB.API.DTO.Workflow.Operations Namespace Global Namespace IDB.API.DTO.Workflow Public Partial Class WorkflowTask Public Sub New() Actions = New List(Of WorkflowTaskAction) End Sub Public Overridable Property ID As Integer Public Overridable Property DocumentID As Guid Public Overridable Property Title As String Public Overridable Property Description As String Public Overridable Property ContextTitle As String Public Overridable Property Project As String Public Overridable Property Relation As String Public Overridable Property ImageKey As String Public Overridable Property Urgent As Boolean Public Overridable Property IsRead As Boolean Public Overridable Property AssignmentDate As Nullable(Of Date) Public Overridable Property CompletionDate As Nullable(Of Date) Public Overridable Property NumberOfComments As Integer Public Overridable Property ExtraField As String Public Overridable Property HasPreview As Boolean Public Overridable Property Extension As String Public Overridable Property IsInformative As Boolean Public Overridable Property HasPendingSideSteps As Boolean Public Overridable Property Actions As List(Of WorkflowTaskAction) Public Overridable Property CanAccept As Boolean End Class Public Partial Class WorkflowTaskAction Public Overridable Property ID As Integer Public Overridable Property Title As String Public Overridable Property Type As String Public Overridable Property UseDialog As Boolean Public Overridable Property ConnectionID As Guid End Class End Namespace Namespace IDB.API.DTO.Workflow.Operations Public Partial Class GetWorkflowTask Implements IReturn(Of WorkflowTask) Implements IHasVersion Public Overridable Property ID As Integer Public Overridable Property Version As Integer End Class End Namespace End Namespace