Required role: | REGISUserRole |
POST | /Academic/Course/{secUUID}/Grade/Save |
---|
import 'package:servicestack/servicestack.dart';
import 'dart:typed_data';
class GradeByCourseSaveResponse implements IConvertible
{
ResponseStatus? responseStatus;
String? secUUID;
List<String>? messages;
bool? is_successful;
GradeByCourseSaveResponse({this.responseStatus,this.secUUID,this.messages,this.is_successful});
GradeByCourseSaveResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
responseStatus = JsonConverters.fromJson(json['responseStatus'],'ResponseStatus',context!);
secUUID = json['secUUID'];
messages = JsonConverters.fromJson(json['messages'],'List<String>',context!);
is_successful = json['is_successful'];
return this;
}
Map<String, dynamic> toJson() => {
'responseStatus': JsonConverters.toJson(responseStatus,'ResponseStatus',context!),
'secUUID': secUUID,
'messages': JsonConverters.toJson(messages,'List<String>',context!),
'is_successful': is_successful
};
getTypeName() => "GradeByCourseSaveResponse";
TypeContext? context = _ctx;
}
class GradeStudentAcademicCredentialRequest implements IConvertible
{
String? stacUUID;
String? grade;
bool? is_grade_final;
GradeStudentAcademicCredentialRequest({this.stacUUID,this.grade,this.is_grade_final});
GradeStudentAcademicCredentialRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
stacUUID = json['stacUUID'];
grade = json['grade'];
is_grade_final = json['is_grade_final'];
return this;
}
Map<String, dynamic> toJson() => {
'stacUUID': stacUUID,
'grade': grade,
'is_grade_final': is_grade_final
};
getTypeName() => "GradeStudentAcademicCredentialRequest";
TypeContext? context = _ctx;
}
class GradeByCourseSaveRequest implements IConvertible
{
String? secUUID;
DateTime? override_grading_end_date;
bool? crosslists_included;
List<GradeStudentAcademicCredentialRequest>? studentAcademicCredentials;
String? authorizing_uuid;
GradeByCourseSaveRequest({this.secUUID,this.override_grading_end_date,this.crosslists_included,this.studentAcademicCredentials,this.authorizing_uuid});
GradeByCourseSaveRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
secUUID = json['secUUID'];
override_grading_end_date = JsonConverters.fromJson(json['override_grading_end_date'],'DateTime',context!);
crosslists_included = json['crosslists_included'];
studentAcademicCredentials = JsonConverters.fromJson(json['studentAcademicCredentials'],'List<GradeStudentAcademicCredentialRequest>',context!);
authorizing_uuid = json['authorizing_uuid'];
return this;
}
Map<String, dynamic> toJson() => {
'secUUID': secUUID,
'override_grading_end_date': JsonConverters.toJson(override_grading_end_date,'DateTime',context!),
'crosslists_included': crosslists_included,
'studentAcademicCredentials': JsonConverters.toJson(studentAcademicCredentials,'List<GradeStudentAcademicCredentialRequest>',context!),
'authorizing_uuid': authorizing_uuid
};
getTypeName() => "GradeByCourseSaveRequest";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'data.regent_college.edu', types: <String, TypeInfo> {
'GradeByCourseSaveResponse': TypeInfo(TypeOf.Class, create:() => GradeByCourseSaveResponse()),
'GradeStudentAcademicCredentialRequest': TypeInfo(TypeOf.Class, create:() => GradeStudentAcademicCredentialRequest()),
'GradeByCourseSaveRequest': TypeInfo(TypeOf.Class, create:() => GradeByCourseSaveRequest()),
'List<GradeStudentAcademicCredentialRequest>': TypeInfo(TypeOf.Class, create:() => <GradeStudentAcademicCredentialRequest>[]),
});
Dart GradeByCourseSaveRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /Academic/Course/{secUUID}/Grade/Save HTTP/1.1
Host: data.regent-college.edu
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"secUUID":"String","override_grading_end_date":"0001-01-01T00:00:00.0000000","crosslists_included":false,"studentAcademicCredentials":[{"stacUUID":"String","grade":"String","is_grade_final":false}],"authorizing_uuid":"String"}
HTTP/1.1 200 OK Content-Type: text/jsonl Content-Length: length {"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}},"secUUID":"String","messages":["String"],"is_successful":false}