/* Options: Date: 2026-04-01 00:34:21 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-do-services.klokgroep.nl/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetTaskCommentsOperation.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; /** * Get all comments of a workflow task. */ // @Route("/workflowtasks/getcomments", "POST") // @Api(Description="Get all comments of a workflow task.") class GetTaskCommentsOperation implements IReturn>, IConvertible, IPost { /** * ID of the workflow task */ // @ApiMember(Description="ID of the workflow task", IsRequired=true) int? TaskID; GetTaskCommentsOperation({this.TaskID}); GetTaskCommentsOperation.fromJson(Map json) { fromMap(json); } fromMap(Map json) { TaskID = json['TaskID']; return this; } Map toJson() => { 'TaskID': TaskID }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "GetTaskCommentsOperation"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'test_do_services.klokgroep.nl', types: { 'List': TypeInfo(TypeOf.Class, create:() => []), 'WorkflowTaskCommentDTO': TypeInfo(TypeOf.Class, create:() => WorkflowTaskCommentDTO()), 'GetTaskCommentsOperation': TypeInfo(TypeOf.Class, create:() => GetTaskCommentsOperation()), });