| Required permission: | ReadStudentStatus | 
| POST | /StudentStatusNoAuth | 
|---|
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 StudentStatusNoAuthRequest implements IConvertible
{
    String? regent_login;
    StudentStatusNoAuthRequest({this.regent_login});
    StudentStatusNoAuthRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }
    fromMap(Map<String, dynamic> json) {
        regent_login = json['regent_login'];
        return this;
    }
    Map<String, dynamic> toJson() => {
        'regent_login': regent_login
    };
    getTypeName() => "StudentStatusNoAuthRequest";
    TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'data.regent_college.edu', types: <String, TypeInfo> {
    'StudentStatusResponse': TypeInfo(TypeOf.Class, create:() => StudentStatusResponse()),
    'StudentStatusNoAuthRequest': TypeInfo(TypeOf.Class, create:() => StudentStatusNoAuthRequest()),
});
Dart StudentStatusNoAuthRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /StudentStatusNoAuth HTTP/1.1 
Host: data.regent-college.edu 
Accept: text/csv
Content-Type: text/csv
Content-Length: length
{"regent_login":"String"}
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length
{"is_active":false,"is_authenticated":false,"is_admitted":false}