regis

<back to all web services

StudentGraduationUpdateStatusesRequest

Requires Authentication
Required role:REGISUserRole
The following routes are available for this service:
POST/StudentGraduation/Update/Statuses
import java.math.*;
import java.util.*;
import net.servicestack.client.*;

public class dtos
{

    public static class StudentGraduationUpdateStatusesRequest
    {
        public String authorizing_uuid = null;
        public ArrayList<StudentGraduationUpdateStatusRequest> student_graduations = null;
        
        public String getAuthorizingUuid() { return authorizing_uuid; }
        public StudentGraduationUpdateStatusesRequest setAuthorizingUuid(String value) { this.authorizing_uuid = value; return this; }
        public ArrayList<StudentGraduationUpdateStatusRequest> getStudentGraduations() { return student_graduations; }
        public StudentGraduationUpdateStatusesRequest setStudentGraduations(ArrayList<StudentGraduationUpdateStatusRequest> value) { this.student_graduations = value; return this; }
    }

    public static class StudentGraduationUpdateStatusRequest
    {
        public String uuid = null;
        public Integer year = null;
        public String current_status = null;
        public Boolean is_attending = null;
        public Boolean is_paid = null;
        public String comments = null;
        
        public String getUuid() { return uuid; }
        public StudentGraduationUpdateStatusRequest setUuid(String value) { this.uuid = value; return this; }
        public Integer getYear() { return year; }
        public StudentGraduationUpdateStatusRequest setYear(Integer value) { this.year = value; return this; }
        public String getCurrentStatus() { return current_status; }
        public StudentGraduationUpdateStatusRequest setCurrentStatus(String value) { this.current_status = value; return this; }
        public Boolean getIsAttending() { return is_attending; }
        public StudentGraduationUpdateStatusRequest setIsAttending(Boolean value) { this.is_attending = value; return this; }
        public Boolean getIsPaid() { return is_paid; }
        public StudentGraduationUpdateStatusRequest setIsPaid(Boolean value) { this.is_paid = value; return this; }
        public String getComments() { return comments; }
        public StudentGraduationUpdateStatusRequest setComments(String value) { this.comments = value; return this; }
    }

}

Java StudentGraduationUpdateStatusesRequest DTOs

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

HTTP + CSV

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

POST /StudentGraduation/Update/Statuses HTTP/1.1 
Host: data.regent-college.edu 
Accept: text/csv
Content-Type: text/csv
Content-Length: length

{"authorizing_uuid":"String","student_graduations":[{"uuid":"String","year":0,"current_status":"String","is_attending":false,"is_paid":false,"comments":"String"}]}
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length

{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}