/* Options: Date: 2025-09-14 00:01:47 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: GetCoordinators.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class GetCoordinators implements IReturn>, IConvertible, IPost { int? PageSize; int? PageNumber; String? SearchCriteria; int? SelectedUserID; GetCoordinators({this.PageSize,this.PageNumber,this.SearchCriteria,this.SelectedUserID}); GetCoordinators.fromJson(Map json) { fromMap(json); } fromMap(Map json) { PageSize = json['PageSize']; PageNumber = json['PageNumber']; SearchCriteria = json['SearchCriteria']; SelectedUserID = json['SelectedUserID']; return this; } Map toJson() => { 'PageSize': PageSize, 'PageNumber': PageNumber, 'SearchCriteria': SearchCriteria, 'SelectedUserID': SelectedUserID }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "GetCoordinators"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'doapigw.baasbv.nl', types: { 'GetCoordinators': TypeInfo(TypeOf.Class, create:() => GetCoordinators()), });