/* Options: Date: 2025-07-05 09:00:25 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 */ import 'package:servicestack/servicestack.dart'; 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()), });