/* Options: Date: 2026-03-31 17:03:57 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-do-services.klokgroep.nl/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: PostponeTaskOperation.* //ExcludeTypes: //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.*; public class dtos { /** * Create workflow task postponement. */ @Route(Path="/workflowtasks/postpone", Verbs="POST") @Api(Description="Create workflow task postponement.") public static class PostponeTaskOperation implements IReturnVoid { /** * ID of the workflow task(s) to affect */ @ApiMember(Description="ID of the workflow task(s) to affect", IsRequired=true) public ArrayList TaskIDs = new ArrayList(); /** * Postpone until? */ @ApiMember(Description="Postpone until?", IsRequired=true) public Date DateTime = null; /** * Reason for postponing the workflow task */ @ApiMember(Description="Reason for postponing the workflow task", IsRequired=true) public String Reason = null; public ArrayList getTaskIDs() { return TaskIDs; } public PostponeTaskOperation setTaskIDs(ArrayList value) { this.TaskIDs = value; return this; } public Date getDateTime() { return DateTime; } public PostponeTaskOperation setDateTime(Date value) { this.DateTime = value; return this; } public String getReason() { return Reason; } public PostponeTaskOperation setReason(String value) { this.Reason = value; return this; } } }