/* Options:
Date: 2026-03-31 17:10:14
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
//MakeInternal: False
//MakeDataContractsExtensible: False
//AddNullableAnnotations: False
//AddReturnMarker: True
//AddDescriptionAsComments: True
//AddDataContractAttributes: False
//AddIndexesToDataMembers: False
//AddGeneratedCodeAttributes: False
//AddResponseStatus: False
//AddImplicitVersion:
//InitializeCollections: False
//ExportValueTypes: False
IncludeTypes: PostponeTaskOperation.*
//ExcludeTypes:
//AddNamespaces:
//AddDefaultXmlNamespace: http://schemas.servicestack.net/types
*/
using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using System.Drawing;
using IDB.Workflow.API.Operations;
namespace IDB.Workflow.API.Operations
{
///
///Create workflow task postponement.
///
[Route("/workflowtasks/postpone", "POST")]
[Api(Description="Create workflow task postponement.")]
public partial class PostponeTaskOperation
: IReturnVoid
{
///
///ID of the workflow task(s) to affect
///
[ApiMember(Description="ID of the workflow task(s) to affect", IsRequired=true)]
public virtual int[] TaskIDs { get; set; } = [];
///
///Postpone until?
///
[ApiMember(Description="Postpone until?", IsRequired=true)]
public virtual DateTime DateTime { get; set; }
///
///Reason for postponing the workflow task
///
[ApiMember(Description="Reason for postponing the workflow task", IsRequired=true)]
public virtual string Reason { get; set; }
}
}