/* Options: Date: 2024-10-18 04:15:01 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: GetDocumentsCount.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class RegistrationProfileFieldValue implements IConvertible { String? DocumentFieldID; String? Value; String? ShadowValue; bool? IsModifiedByUser; RegistrationProfileFieldValue({this.DocumentFieldID,this.Value,this.ShadowValue,this.IsModifiedByUser}); RegistrationProfileFieldValue.fromJson(Map json) { fromMap(json); } fromMap(Map json) { DocumentFieldID = json['DocumentFieldID']; Value = json['Value']; ShadowValue = json['ShadowValue']; IsModifiedByUser = json['IsModifiedByUser']; return this; } Map toJson() => { 'DocumentFieldID': DocumentFieldID, 'Value': Value, 'ShadowValue': ShadowValue, 'IsModifiedByUser': IsModifiedByUser }; getTypeName() => "RegistrationProfileFieldValue"; TypeContext? context = _ctx; } // @Route("/documents/count", "GET POST") class GetDocumentsCount implements IReturn, IConvertible { String? ViewID; int? PageSize; int? PageNumber; String? SearchCriteria; String? ExplorerID; String? Path; String? ExternalNumber; DateTime? ModifiedSince; bool? AllVersions; bool? Archived; String? FilterName; String? ProgCode; String? RegistrationProfileFieldID; List? DependableFields; GetDocumentsCount({this.ViewID,this.PageSize,this.PageNumber,this.SearchCriteria,this.ExplorerID,this.Path,this.ExternalNumber,this.ModifiedSince,this.AllVersions,this.Archived,this.FilterName,this.ProgCode,this.RegistrationProfileFieldID,this.DependableFields}); GetDocumentsCount.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ViewID = json['ViewID']; PageSize = json['PageSize']; PageNumber = json['PageNumber']; SearchCriteria = json['SearchCriteria']; ExplorerID = json['ExplorerID']; Path = json['Path']; ExternalNumber = json['ExternalNumber']; ModifiedSince = JsonConverters.fromJson(json['ModifiedSince'],'DateTime',context!); AllVersions = json['AllVersions']; Archived = json['Archived']; FilterName = json['FilterName']; ProgCode = json['ProgCode']; RegistrationProfileFieldID = json['RegistrationProfileFieldID']; DependableFields = JsonConverters.fromJson(json['DependableFields'],'List',context!); return this; } Map toJson() => { 'ViewID': ViewID, 'PageSize': PageSize, 'PageNumber': PageNumber, 'SearchCriteria': SearchCriteria, 'ExplorerID': ExplorerID, 'Path': Path, 'ExternalNumber': ExternalNumber, 'ModifiedSince': JsonConverters.toJson(ModifiedSince,'DateTime',context!), 'AllVersions': AllVersions, 'Archived': Archived, 'FilterName': FilterName, 'ProgCode': ProgCode, 'RegistrationProfileFieldID': RegistrationProfileFieldID, 'DependableFields': JsonConverters.toJson(DependableFields,'List',context!) }; createResponse() => 0; getResponseTypeName() => "int"; getTypeName() => "GetDocumentsCount"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'digiofficeapigateway.deltares.nl', types: { 'RegistrationProfileFieldValue': TypeInfo(TypeOf.Class, create:() => RegistrationProfileFieldValue()), 'GetDocumentsCount': TypeInfo(TypeOf.Class, create:() => GetDocumentsCount()), 'List': TypeInfo(TypeOf.Class, create:() => []), });