GET POST | /api/projects/count |
---|
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<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
DocumentFieldID = json['DocumentFieldID'];
Value = json['Value'];
ShadowValue = json['ShadowValue'];
IsModifiedByUser = json['IsModifiedByUser'];
return this;
}
Map<String, dynamic> toJson() => {
'DocumentFieldID': DocumentFieldID,
'Value': Value,
'ShadowValue': ShadowValue,
'IsModifiedByUser': IsModifiedByUser
};
getTypeName() => "RegistrationProfileFieldValue";
TypeContext? context = _ctx;
}
class GetProjectsCount implements IConvertible
{
int? PageSize;
int? PageNumber;
String? SearchCriteria;
bool? Active;
String? RegistrationProfileFieldID;
List<RegistrationProfileFieldValue>? DependableFields;
GetProjectsCount({this.PageSize,this.PageNumber,this.SearchCriteria,this.Active,this.RegistrationProfileFieldID,this.DependableFields});
GetProjectsCount.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
PageSize = json['PageSize'];
PageNumber = json['PageNumber'];
SearchCriteria = json['SearchCriteria'];
Active = json['Active'];
RegistrationProfileFieldID = json['RegistrationProfileFieldID'];
DependableFields = JsonConverters.fromJson(json['DependableFields'],'List<RegistrationProfileFieldValue>',context!);
return this;
}
Map<String, dynamic> toJson() => {
'PageSize': PageSize,
'PageNumber': PageNumber,
'SearchCriteria': SearchCriteria,
'Active': Active,
'RegistrationProfileFieldID': RegistrationProfileFieldID,
'DependableFields': JsonConverters.toJson(DependableFields,'List<RegistrationProfileFieldValue>',context!)
};
getTypeName() => "GetProjectsCount";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'digiofficeapigateway.deltares.nl', types: <String, TypeInfo> {
'RegistrationProfileFieldValue': TypeInfo(TypeOf.Class, create:() => RegistrationProfileFieldValue()),
'GetProjectsCount': TypeInfo(TypeOf.Class, create:() => GetProjectsCount()),
'List<RegistrationProfileFieldValue>': TypeInfo(TypeOf.Class, create:() => <RegistrationProfileFieldValue>[]),
});
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /api/projects/count HTTP/1.1
Host: digiofficeapigateway.deltares.nl
Accept: application/json
Content-Type: application/json
Content-Length: length
{"PageSize":0,"PageNumber":0,"SearchCriteria":"String","Active":false,"RegistrationProfileFieldID":"00000000-0000-0000-0000-000000000000","DependableFields":[{"DocumentFieldID":"00000000-0000-0000-0000-000000000000","Value":"String","ShadowValue":"String","IsModifiedByUser":false}]}
HTTP/1.1 200 OK Content-Type: application/json Content-Length: length 0