/* Options:
Date: 2025-04-11 21:25:53
Version: 8.22
Tip: To override a DTO option, remove "//" prefix before updating
BaseUrl: https://data.regent-college.edu

//Package: 
//GlobalNamespace: dtos
//AddPropertyAccessors: True
//SettersReturnThis: True
//AddServiceStackTypes: True
//AddResponseStatus: False
//AddDescriptionAsComments: True
//AddImplicitVersion: 
IncludeTypes: StudentExemptionCredentialUpdateRequest.*
//ExcludeTypes: 
//TreatTypesAsStrings: 
//DefaultImports: java.math.*,java.util.*,net.servicestack.client.*
*/

import java.math.*;
import java.util.*;
import net.servicestack.client.*;

public class dtos
{

    @Route(Path="/StudentExemptionCredential/{uuid}/Update/{exemption_uuid}", Verbs="POST")
    public static class StudentExemptionCredentialUpdateRequest implements IReturn<ResponseStatus>
    {
        public String uuid = null;
        public String exemption_uuid = null;
        public String course_name = null;
        public String title = null;
        public BigDecimal credit_value = null;
        public String authorizing_uuid = null;
        
        public String getUuid() { return uuid; }
        public StudentExemptionCredentialUpdateRequest setUuid(String value) { this.uuid = value; return this; }
        public String getExemptionUuid() { return exemption_uuid; }
        public StudentExemptionCredentialUpdateRequest setExemptionUuid(String value) { this.exemption_uuid = value; return this; }
        public String getCourseName() { return course_name; }
        public StudentExemptionCredentialUpdateRequest setCourseName(String value) { this.course_name = value; return this; }
        public String getTitle() { return title; }
        public StudentExemptionCredentialUpdateRequest setTitle(String value) { this.title = value; return this; }
        public BigDecimal getCreditValue() { return credit_value; }
        public StudentExemptionCredentialUpdateRequest setCreditValue(BigDecimal value) { this.credit_value = value; return this; }
        public String getAuthorizingUuid() { return authorizing_uuid; }
        public StudentExemptionCredentialUpdateRequest setAuthorizingUuid(String value) { this.authorizing_uuid = value; return this; }
        private static Object responseType = ResponseStatus.class;
        public Object getResponseType() { return responseType; }
    }

    @DataContract
    public static class ResponseStatus
    {
        @DataMember(Order=1)
        public String errorCode = null;

        @DataMember(Order=2)
        public String message = null;

        @DataMember(Order=3)
        public String stackTrace = null;

        @DataMember(Order=4)
        public ArrayList<ResponseError> errors = null;

        @DataMember(Order=5)
        public HashMap<String,String> meta = null;
        
        public String getErrorCode() { return errorCode; }
        public ResponseStatus setErrorCode(String value) { this.errorCode = value; return this; }
        public String getMessage() { return message; }
        public ResponseStatus setMessage(String value) { this.message = value; return this; }
        public String getStackTrace() { return stackTrace; }
        public ResponseStatus setStackTrace(String value) { this.stackTrace = value; return this; }
        public ArrayList<ResponseError> getErrors() { return errors; }
        public ResponseStatus setErrors(ArrayList<ResponseError> value) { this.errors = value; return this; }
        public HashMap<String,String> getMeta() { return meta; }
        public ResponseStatus setMeta(HashMap<String,String> value) { this.meta = value; return this; }
    }

}