/* Options: Date: 2026-03-31 21:22:49 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: AddCommentOperation.* //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 { /** * Add a workflow task comment. */ @Route(Path="/workflowtasks/addcomment", Verbs="POST") @Api(Description="Add a workflow task comment.") public static class AddCommentOperation 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(); /** * The comment to be added */ @ApiMember(Description="The comment to be added", IsRequired=true) public String Comment = null; public ArrayList getTaskIDs() { return TaskIDs; } public AddCommentOperation setTaskIDs(ArrayList value) { this.TaskIDs = value; return this; } public String getComment() { return Comment; } public AddCommentOperation setComment(String value) { this.Comment = value; return this; } } }