/* Options: Date: 2024-10-18 04:31:16 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.deltares.nl/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetSideStepName.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class GetSideStepName implements IReturn, IConvertible { int? WorkflowTaskId; GetSideStepName({this.WorkflowTaskId}); GetSideStepName.fromJson(Map json) { fromMap(json); } fromMap(Map json) { WorkflowTaskId = json['WorkflowTaskId']; return this; } Map toJson() => { 'WorkflowTaskId': WorkflowTaskId }; createResponse() => ""; getResponseTypeName() => "String"; getTypeName() => "GetSideStepName"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'digiofficeapigateway.deltares.nl', types: { 'GetSideStepName': TypeInfo(TypeOf.Class, create:() => GetSideStepName()), });