regis

<back to all web services

ApplicationSummaryRequest

Requires Authentication
Required role:REGISUserRole
The following routes are available for this service:
POST/application/summary
import 'package:servicestack/servicestack.dart';

class ApplicationSummaryResponse implements IConvertible
{
    ResponseStatus? responseStatus;
    String? uuid;
    int? regent_id;
    String? start_term;
    String? program;
    String? application_status;
    double? undergrad_gpa;

    ApplicationSummaryResponse({this.responseStatus,this.uuid,this.regent_id,this.start_term,this.program,this.application_status,this.undergrad_gpa});
    ApplicationSummaryResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        responseStatus = JsonConverters.fromJson(json['responseStatus'],'ResponseStatus',context!);
        uuid = json['uuid'];
        regent_id = json['regent_id'];
        start_term = json['start_term'];
        program = json['program'];
        application_status = json['application_status'];
        undergrad_gpa = JsonConverters.toDouble(json['undergrad_gpa']);
        return this;
    }

    Map<String, dynamic> toJson() => {
        'responseStatus': JsonConverters.toJson(responseStatus,'ResponseStatus',context!),
        'uuid': uuid,
        'regent_id': regent_id,
        'start_term': start_term,
        'program': program,
        'application_status': application_status,
        'undergrad_gpa': undergrad_gpa
    };

    getTypeName() => "ApplicationSummaryResponse";
    TypeContext? context = _ctx;
}

class ApplicationSummaryRequest implements IConvertible
{
    String? uuid;

    ApplicationSummaryRequest({this.uuid});
    ApplicationSummaryRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        uuid = json['uuid'];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'uuid': uuid
    };

    getTypeName() => "ApplicationSummaryRequest";
    TypeContext? context = _ctx;
}

TypeContext _ctx = TypeContext(library: 'data.regent_college.edu', types: <String, TypeInfo> {
    'ApplicationSummaryResponse': TypeInfo(TypeOf.Class, create:() => ApplicationSummaryResponse()),
    'ApplicationSummaryRequest': TypeInfo(TypeOf.Class, create:() => ApplicationSummaryRequest()),
});

Dart ApplicationSummaryRequest 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

HTTP + JSON

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /application/summary HTTP/1.1 
Host: data.regent-college.edu 
Accept: application/json
Content-Type: application/json
Content-Length: length

{"uuid":"String"}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}},"uuid":"String","regent_id":0,"start_term":"String","program":"String","application_status":"String","undergrad_gpa":0}