Required permission: | ReadStudentStatus |
POST | /StudentStatus |
---|
import 'package:servicestack/servicestack.dart';
import 'dart:typed_data';
class StudentStatusResponse implements IConvertible
{
bool? is_active;
bool? is_authenticated;
bool? is_admitted;
StudentStatusResponse({this.is_active,this.is_authenticated,this.is_admitted});
StudentStatusResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
is_active = json['is_active'];
is_authenticated = json['is_authenticated'];
is_admitted = json['is_admitted'];
return this;
}
Map<String, dynamic> toJson() => {
'is_active': is_active,
'is_authenticated': is_authenticated,
'is_admitted': is_admitted
};
getTypeName() => "StudentStatusResponse";
TypeContext? context = _ctx;
}
class StudentStatusRequest implements IConvertible
{
String? regent_login;
String? password;
StudentStatusRequest({this.regent_login,this.password});
StudentStatusRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
regent_login = json['regent_login'];
password = json['password'];
return this;
}
Map<String, dynamic> toJson() => {
'regent_login': regent_login,
'password': password
};
getTypeName() => "StudentStatusRequest";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'data.regent_college.edu', types: <String, TypeInfo> {
'StudentStatusResponse': TypeInfo(TypeOf.Class, create:() => StudentStatusResponse()),
'StudentStatusRequest': TypeInfo(TypeOf.Class, create:() => StudentStatusRequest()),
});
Dart StudentStatusRequest DTOs
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 /StudentStatus HTTP/1.1
Host: data.regent-college.edu
Accept: application/json
Content-Type: application/json
Content-Length: length
{"regent_login":"String","password":"String"}
HTTP/1.1 200 OK Content-Type: application/json Content-Length: length {"is_active":false,"is_authenticated":false,"is_admitted":false}