| Required role: | REGISUserRole |
| POST | /Sync/BioAndAddressProcessQueue |
|---|
import 'package:servicestack/servicestack.dart';
import 'dart:typed_data';
class SyncBioAndAddressResponse implements IConvertible
{
ResponseStatus? responseStatus;
bool? successfull;
SyncBioAndAddressResponse({this.responseStatus,this.successfull});
SyncBioAndAddressResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
responseStatus = JsonConverters.fromJson(json['responseStatus'],'ResponseStatus',context!);
successfull = json['successfull'];
return this;
}
Map<String, dynamic> toJson() => {
'responseStatus': JsonConverters.toJson(responseStatus,'ResponseStatus',context!),
'successfull': successfull
};
getTypeName() => "SyncBioAndAddressResponse";
TypeContext? context = _ctx;
}
class SyncBioAndAddressProcessQueueRequest implements IConvertible
{
int? regent_id;
SyncBioAndAddressProcessQueueRequest({this.regent_id});
SyncBioAndAddressProcessQueueRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
regent_id = json['regent_id'];
return this;
}
Map<String, dynamic> toJson() => {
'regent_id': regent_id
};
getTypeName() => "SyncBioAndAddressProcessQueueRequest";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'data.regent_college.edu', types: <String, TypeInfo> {
'SyncBioAndAddressResponse': TypeInfo(TypeOf.Class, create:() => SyncBioAndAddressResponse()),
'SyncBioAndAddressProcessQueueRequest': TypeInfo(TypeOf.Class, create:() => SyncBioAndAddressProcessQueueRequest()),
});
Dart SyncBioAndAddressProcessQueueRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /Sync/BioAndAddressProcessQueue HTTP/1.1
Host: data.regent-college.edu
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
regent_id: 0
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
responseStatus:
{
errorCode: String,
message: String,
stackTrace: String,
errors:
[
{
errorCode: String,
fieldName: String,
message: String,
meta:
{
String: String
}
}
],
meta:
{
String: String
}
},
successfull: False
}