Required role: | REGISUserRole |
POST | /StudentAcademicCredentialExtensions/{uuid}/{stac_uuid}/Update |
---|
import 'package:servicestack/servicestack.dart';
import 'dart:typed_data';
class StudentAcademicCredentialExtensionUpdateRequest implements IConvertible
{
String? uuid;
String? stac_uuid;
DateTime? due_date;
DateTime? received_date;
String? grade_penalty;
String? assignments;
String? comments;
bool? is_active;
String? authorizing_uuid;
StudentAcademicCredentialExtensionUpdateRequest({this.uuid,this.stac_uuid,this.due_date,this.received_date,this.grade_penalty,this.assignments,this.comments,this.is_active,this.authorizing_uuid});
StudentAcademicCredentialExtensionUpdateRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
uuid = json['uuid'];
stac_uuid = json['stac_uuid'];
due_date = JsonConverters.fromJson(json['due_date'],'DateTime',context!);
received_date = JsonConverters.fromJson(json['received_date'],'DateTime',context!);
grade_penalty = json['grade_penalty'];
assignments = json['assignments'];
comments = json['comments'];
is_active = json['is_active'];
authorizing_uuid = json['authorizing_uuid'];
return this;
}
Map<String, dynamic> toJson() => {
'uuid': uuid,
'stac_uuid': stac_uuid,
'due_date': JsonConverters.toJson(due_date,'DateTime',context!),
'received_date': JsonConverters.toJson(received_date,'DateTime',context!),
'grade_penalty': grade_penalty,
'assignments': assignments,
'comments': comments,
'is_active': is_active,
'authorizing_uuid': authorizing_uuid
};
getTypeName() => "StudentAcademicCredentialExtensionUpdateRequest";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'data.regent_college.edu', types: <String, TypeInfo> {
'StudentAcademicCredentialExtensionUpdateRequest': TypeInfo(TypeOf.Class, create:() => StudentAcademicCredentialExtensionUpdateRequest()),
});
Dart StudentAcademicCredentialExtensionUpdateRequest 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 /StudentAcademicCredentialExtensions/{uuid}/{stac_uuid}/Update HTTP/1.1
Host: data.regent-college.edu
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
uuid: String,
stac_uuid: String,
due_date: 0001-01-01,
received_date: 0001-01-01,
grade_penalty: String,
assignments: String,
comments: String,
is_active: False,
authorizing_uuid: String
}
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length { errorCode: String, message: String, stackTrace: String, errors: [ { errorCode: String, fieldName: String, message: String, meta: { String: String } } ], meta: { String: String } }