Required role: | REGISUserRole |
POST | /Academic/{uuid}/RegistrationVerification/Pdf |
---|
import 'package:servicestack/servicestack.dart';
import 'dart:typed_data';
class RegistrationVerificationPdfRequest implements IConvertible
{
String? uuid;
String? reporting_term;
RegistrationVerificationPdfRequest({this.uuid,this.reporting_term});
RegistrationVerificationPdfRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
uuid = json['uuid'];
reporting_term = json['reporting_term'];
return this;
}
Map<String, dynamic> toJson() => {
'uuid': uuid,
'reporting_term': reporting_term
};
getTypeName() => "RegistrationVerificationPdfRequest";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'data.regent_college.edu', types: <String, TypeInfo> {
'RegistrationVerificationPdfRequest': TypeInfo(TypeOf.Class, create:() => RegistrationVerificationPdfRequest()),
});
Dart RegistrationVerificationPdfRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /Academic/{uuid}/RegistrationVerification/Pdf HTTP/1.1
Host: data.regent-college.edu
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<RegistrationVerificationPdfRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/regis.ClassLibrary.Requests">
<reporting_term>String</reporting_term>
<uuid>String</uuid>
</RegistrationVerificationPdfRequest>
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length (byte[])