/* Options: Date: 2025-09-13 22:09:42 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetAllowedSidestepProcesses.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class GetAllowedSidestepProcesses implements IReturn>, IConvertible, IPost { int? TaskID; GetAllowedSidestepProcesses({this.TaskID}); GetAllowedSidestepProcesses.fromJson(Map json) { fromMap(json); } fromMap(Map json) { TaskID = json['TaskID']; return this; } Map toJson() => { 'TaskID': TaskID }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "GetAllowedSidestepProcesses"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'doapigw.baasbv.nl', types: { 'GetAllowedSidestepProcesses': TypeInfo(TypeOf.Class, create:() => GetAllowedSidestepProcesses()), });