regis

<back to all web services

ShareMyGradesReportRequest

Requires Authentication
Required permission:ShareGrades
The following routes are available for this service:
POST/ShareMyGrades/Report/{token}
import java.math.*;
import java.util.*;
import net.servicestack.client.*;

public class dtos
{

    public static class ShareMyGradesReportRequest
    {
        public String token = null;
        
        public String getToken() { return token; }
        public ShareMyGradesReportRequest setToken(String value) { this.token = value; return this; }
    }

    public static class ShareMyGradesReportResponse
    {
        public ResponseStatus responseStatus = null;
        public String first_name = null;
        public String last_name = null;
        public Integer regent_id = null;
        public BigDecimal gpa = null;
        public String current_program = null;
        public ArrayList<StudentAcademicCredentialTranscriptResponse> student_academic_credentials = null;
        public ArrayList<StudentTransferCredentialTranscriptResponse> transfer_credentials = null;
        
        public ResponseStatus getResponseStatus() { return responseStatus; }
        public ShareMyGradesReportResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; }
        public String getFirstName() { return first_name; }
        public ShareMyGradesReportResponse setFirstName(String value) { this.first_name = value; return this; }
        public String getLastName() { return last_name; }
        public ShareMyGradesReportResponse setLastName(String value) { this.last_name = value; return this; }
        public Integer getRegentId() { return regent_id; }
        public ShareMyGradesReportResponse setRegentId(Integer value) { this.regent_id = value; return this; }
        public BigDecimal getGpa() { return gpa; }
        public ShareMyGradesReportResponse setGpa(BigDecimal value) { this.gpa = value; return this; }
        public String getCurrentProgram() { return current_program; }
        public ShareMyGradesReportResponse setCurrentProgram(String value) { this.current_program = value; return this; }
        public ArrayList<StudentAcademicCredentialTranscriptResponse> getStudentAcademicCredentials() { return student_academic_credentials; }
        public ShareMyGradesReportResponse setStudentAcademicCredentials(ArrayList<StudentAcademicCredentialTranscriptResponse> value) { this.student_academic_credentials = value; return this; }
        public ArrayList<StudentTransferCredentialTranscriptResponse> getTransferCredentials() { return transfer_credentials; }
        public ShareMyGradesReportResponse setTransferCredentials(ArrayList<StudentTransferCredentialTranscriptResponse> value) { this.transfer_credentials = value; return this; }
    }

    public static class StudentAcademicCredentialTranscriptResponse extends StudentAcademicCredentialResponse
    {
        public BigDecimal registered_credits = null;
        
        public BigDecimal getRegisteredCredits() { return registered_credits; }
        public StudentAcademicCredentialTranscriptResponse setRegisteredCredits(BigDecimal value) { this.registered_credits = value; return this; }
    }

    public static class StudentAcademicCredentialResponse
    {
        public ResponseStatus responseStatus = null;
        public String uuid = null;
        public String stac_uuid = null;
        public Integer section_id = null;
        public String course_name = null;
        public String section_code = null;
        public String subject = null;
        public Integer course_level = null;
        public String title = null;
        public String pretty_title = null;
        public String location = null;
        public Boolean is_audio = null;
        public Boolean is_oncampus = null;
        public BigDecimal credit_value = null;
        public BigDecimal audit_value = null;
        public Boolean is_audit = null;
        public Boolean is_pass_fail = null;
        public String grade = null;
        public Boolean is_grade_final = null;
        public BigDecimal gpa_credits = null;
        public BigDecimal grade_points = null;
        public String academic_level = null;
        public String printed_comments = null;
        public String term = null;
        public String reporting_term = null;
        public Integer reporting_year = null;
        public String current_status = null;
        public String added_by = null;
        public Date added_date = null;
        public String changed_by = null;
        public Date changed_date = null;
        
        public ResponseStatus getResponseStatus() { return responseStatus; }
        public StudentAcademicCredentialResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; }
        public String getUuid() { return uuid; }
        public StudentAcademicCredentialResponse setUuid(String value) { this.uuid = value; return this; }
        public String getStacUuid() { return stac_uuid; }
        public StudentAcademicCredentialResponse setStacUuid(String value) { this.stac_uuid = value; return this; }
        public Integer getSectionId() { return section_id; }
        public StudentAcademicCredentialResponse setSectionId(Integer value) { this.section_id = value; return this; }
        public String getCourseName() { return course_name; }
        public StudentAcademicCredentialResponse setCourseName(String value) { this.course_name = value; return this; }
        public String getSectionCode() { return section_code; }
        public StudentAcademicCredentialResponse setSectionCode(String value) { this.section_code = value; return this; }
        public String getSubject() { return subject; }
        public StudentAcademicCredentialResponse setSubject(String value) { this.subject = value; return this; }
        public Integer getCourseLevel() { return course_level; }
        public StudentAcademicCredentialResponse setCourseLevel(Integer value) { this.course_level = value; return this; }
        public String getTitle() { return title; }
        public StudentAcademicCredentialResponse setTitle(String value) { this.title = value; return this; }
        public String getPrettyTitle() { return pretty_title; }
        public StudentAcademicCredentialResponse setPrettyTitle(String value) { this.pretty_title = value; return this; }
        public String getLocation() { return location; }
        public StudentAcademicCredentialResponse setLocation(String value) { this.location = value; return this; }
        public Boolean getIsAudio() { return is_audio; }
        public StudentAcademicCredentialResponse setIsAudio(Boolean value) { this.is_audio = value; return this; }
        public Boolean getIsOncampus() { return is_oncampus; }
        public StudentAcademicCredentialResponse setIsOncampus(Boolean value) { this.is_oncampus = value; return this; }
        public BigDecimal getCreditValue() { return credit_value; }
        public StudentAcademicCredentialResponse setCreditValue(BigDecimal value) { this.credit_value = value; return this; }
        public BigDecimal getAuditValue() { return audit_value; }
        public StudentAcademicCredentialResponse setAuditValue(BigDecimal value) { this.audit_value = value; return this; }
        public Boolean getIsAudit() { return is_audit; }
        public StudentAcademicCredentialResponse setIsAudit(Boolean value) { this.is_audit = value; return this; }
        public Boolean getIsPassFail() { return is_pass_fail; }
        public StudentAcademicCredentialResponse setIsPassFail(Boolean value) { this.is_pass_fail = value; return this; }
        public String getGrade() { return grade; }
        public StudentAcademicCredentialResponse setGrade(String value) { this.grade = value; return this; }
        public Boolean getIsGradeFinal() { return is_grade_final; }
        public StudentAcademicCredentialResponse setIsGradeFinal(Boolean value) { this.is_grade_final = value; return this; }
        public BigDecimal getGpaCredits() { return gpa_credits; }
        public StudentAcademicCredentialResponse setGpaCredits(BigDecimal value) { this.gpa_credits = value; return this; }
        public BigDecimal getGradePoints() { return grade_points; }
        public StudentAcademicCredentialResponse setGradePoints(BigDecimal value) { this.grade_points = value; return this; }
        public String getAcademicLevel() { return academic_level; }
        public StudentAcademicCredentialResponse setAcademicLevel(String value) { this.academic_level = value; return this; }
        public String getPrintedComments() { return printed_comments; }
        public StudentAcademicCredentialResponse setPrintedComments(String value) { this.printed_comments = value; return this; }
        public String getTerm() { return term; }
        public StudentAcademicCredentialResponse setTerm(String value) { this.term = value; return this; }
        public String getReportingTerm() { return reporting_term; }
        public StudentAcademicCredentialResponse setReportingTerm(String value) { this.reporting_term = value; return this; }
        public Integer getReportingYear() { return reporting_year; }
        public StudentAcademicCredentialResponse setReportingYear(Integer value) { this.reporting_year = value; return this; }
        public String getCurrentStatus() { return current_status; }
        public StudentAcademicCredentialResponse setCurrentStatus(String value) { this.current_status = value; return this; }
        public String getAddedBy() { return added_by; }
        public StudentAcademicCredentialResponse setAddedBy(String value) { this.added_by = value; return this; }
        public Date getAddedDate() { return added_date; }
        public StudentAcademicCredentialResponse setAddedDate(Date value) { this.added_date = value; return this; }
        public String getChangedBy() { return changed_by; }
        public StudentAcademicCredentialResponse setChangedBy(String value) { this.changed_by = value; return this; }
        public Date getChangedDate() { return changed_date; }
        public StudentAcademicCredentialResponse setChangedDate(Date value) { this.changed_date = value; return this; }
    }

    public static class StudentTransferCredentialTranscriptResponse
    {
        public String course_name = null;
        public String title = null;
        public Boolean is_advanced_standing = null;
        public BigDecimal credit_value = null;
        
        public String getCourseName() { return course_name; }
        public StudentTransferCredentialTranscriptResponse setCourseName(String value) { this.course_name = value; return this; }
        public String getTitle() { return title; }
        public StudentTransferCredentialTranscriptResponse setTitle(String value) { this.title = value; return this; }
        public Boolean getIsAdvancedStanding() { return is_advanced_standing; }
        public StudentTransferCredentialTranscriptResponse setIsAdvancedStanding(Boolean value) { this.is_advanced_standing = value; return this; }
        public BigDecimal getCreditValue() { return credit_value; }
        public StudentTransferCredentialTranscriptResponse setCreditValue(BigDecimal value) { this.credit_value = value; return this; }
    }

}

Java ShareMyGradesReportRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + XML

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

POST /ShareMyGrades/Report/{token} HTTP/1.1 
Host: data.regent-college.edu 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<ShareMyGradesReportRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/regis.ClassLibrary.Requests">
  <token>String</token>
</ShareMyGradesReportRequest>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<ShareMyGradesReportResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/regis.ClassLibrary.Responses">
  <ResponseStatus xmlns:d2p1="http://schemas.servicestack.net/types">
    <d2p1:ErrorCode>String</d2p1:ErrorCode>
    <d2p1:Message>String</d2p1:Message>
    <d2p1:StackTrace>String</d2p1:StackTrace>
    <d2p1:Errors>
      <d2p1:ResponseError>
        <d2p1:ErrorCode>String</d2p1:ErrorCode>
        <d2p1:FieldName>String</d2p1:FieldName>
        <d2p1:Message>String</d2p1:Message>
        <d2p1:Meta xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
          <d5p1:KeyValueOfstringstring>
            <d5p1:Key>String</d5p1:Key>
            <d5p1:Value>String</d5p1:Value>
          </d5p1:KeyValueOfstringstring>
        </d2p1:Meta>
      </d2p1:ResponseError>
    </d2p1:Errors>
    <d2p1:Meta xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:KeyValueOfstringstring>
        <d3p1:Key>String</d3p1:Key>
        <d3p1:Value>String</d3p1:Value>
      </d3p1:KeyValueOfstringstring>
    </d2p1:Meta>
  </ResponseStatus>
  <current_program>String</current_program>
  <first_name>String</first_name>
  <gpa>0</gpa>
  <last_name>String</last_name>
  <regent_id>0</regent_id>
  <student_academic_credentials>
    <StudentAcademicCredentialTranscriptResponse>
      <ResponseStatus xmlns:d4p1="http://schemas.servicestack.net/types">
        <d4p1:ErrorCode>String</d4p1:ErrorCode>
        <d4p1:Message>String</d4p1:Message>
        <d4p1:StackTrace>String</d4p1:StackTrace>
        <d4p1:Errors>
          <d4p1:ResponseError>
            <d4p1:ErrorCode>String</d4p1:ErrorCode>
            <d4p1:FieldName>String</d4p1:FieldName>
            <d4p1:Message>String</d4p1:Message>
            <d4p1:Meta xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
              <d7p1:KeyValueOfstringstring>
                <d7p1:Key>String</d7p1:Key>
                <d7p1:Value>String</d7p1:Value>
              </d7p1:KeyValueOfstringstring>
            </d4p1:Meta>
          </d4p1:ResponseError>
        </d4p1:Errors>
        <d4p1:Meta xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
          <d5p1:KeyValueOfstringstring>
            <d5p1:Key>String</d5p1:Key>
            <d5p1:Value>String</d5p1:Value>
          </d5p1:KeyValueOfstringstring>
        </d4p1:Meta>
      </ResponseStatus>
      <academic_level>String</academic_level>
      <added_by>String</added_by>
      <added_date>0001-01-01T00:00:00</added_date>
      <audit_value>0</audit_value>
      <changed_by>String</changed_by>
      <changed_date>0001-01-01T00:00:00</changed_date>
      <course_level>0</course_level>
      <course_name>String</course_name>
      <credit_value>0</credit_value>
      <current_status>String</current_status>
      <gpa_credits>0</gpa_credits>
      <grade>String</grade>
      <grade_points>0</grade_points>
      <is_audio>false</is_audio>
      <is_audit>false</is_audit>
      <is_grade_final>false</is_grade_final>
      <is_oncampus>false</is_oncampus>
      <is_pass_fail>false</is_pass_fail>
      <location>String</location>
      <pretty_title>String</pretty_title>
      <printed_comments>String</printed_comments>
      <reporting_term>String</reporting_term>
      <reporting_year>0</reporting_year>
      <section_code>String</section_code>
      <section_id>0</section_id>
      <stac_uuid>String</stac_uuid>
      <subject>String</subject>
      <term>String</term>
      <title>String</title>
      <uuid>String</uuid>
      <registered_credits>0</registered_credits>
    </StudentAcademicCredentialTranscriptResponse>
  </student_academic_credentials>
  <transfer_credentials>
    <StudentTransferCredentialTranscriptResponse>
      <course_name>String</course_name>
      <credit_value>0</credit_value>
      <is_advanced_standing>false</is_advanced_standing>
      <title>String</title>
    </StudentTransferCredentialTranscriptResponse>
  </transfer_credentials>
</ShareMyGradesReportResponse>