regis

<back to all web services

SectionCreateRequest

Requires Authentication
Required role:REGISUserRole
The following routes are available for this service:
POST/Sections/Admin/{reporting_term}/Create
import java.math.*;
import java.util.*;
import net.servicestack.client.*;

public class dtos
{

    public static class SectionCreateRequest
    {
        public Integer course_id = null;
        public String course_name = null;
        public BigDecimal min_credits = null;
        public BigDecimal max_credits = null;
        public BigDecimal credit_increments = null;
        public BigDecimal min_audits = null;
        public BigDecimal max_audits = null;
        public BigDecimal audit_increments = null;
        public String section_code = null;
        public String title = null;
        public String pretty_title = null;
        public String override_course_description = null;
        public String current_status = null;
        public String location = null;
        public String room = null;
        public Boolean is_audio = null;
        public Boolean is_oncampus = null;
        public String distance_ed_materials = null;
        public Date start_date = null;
        public Date end_date = null;
        public Date first_meeting_date = null;
        public Date last_meeting_date = null;
        public String start_times = null;
        public String end_times = null;
        public String meeting_days = null;
        public Boolean is_pass_fail = null;
        public Boolean is_waitlist = null;
        public Boolean has_special_requirements = null;
        public String special_requirements = null;
        public Boolean is_unlisted = null;
        public Integer capacity = null;
        public BigDecimal flat_fee_amount = null;
        public BigDecimal additional_fee_amount = null;
        public Date override_registration_start_date = null;
        public Date override_registration_end_date = null;
        public Date override_add_start_date = null;
        public Date override_add_end_date = null;
        public Date override_drop_start_date = null;
        public Date override_drop_end_date = null;
        public Date override_grading_end_date = null;
        public String term = null;
        public String reporting_term = null;
        public String authorizing_uuid = null;
        
        public Integer getCourseId() { return course_id; }
        public SectionCreateRequest setCourseId(Integer value) { this.course_id = value; return this; }
        public String getCourseName() { return course_name; }
        public SectionCreateRequest setCourseName(String value) { this.course_name = value; return this; }
        public BigDecimal getMinCredits() { return min_credits; }
        public SectionCreateRequest setMinCredits(BigDecimal value) { this.min_credits = value; return this; }
        public BigDecimal getMaxCredits() { return max_credits; }
        public SectionCreateRequest setMaxCredits(BigDecimal value) { this.max_credits = value; return this; }
        public BigDecimal getCreditIncrements() { return credit_increments; }
        public SectionCreateRequest setCreditIncrements(BigDecimal value) { this.credit_increments = value; return this; }
        public BigDecimal getMinAudits() { return min_audits; }
        public SectionCreateRequest setMinAudits(BigDecimal value) { this.min_audits = value; return this; }
        public BigDecimal getMaxAudits() { return max_audits; }
        public SectionCreateRequest setMaxAudits(BigDecimal value) { this.max_audits = value; return this; }
        public BigDecimal getAuditIncrements() { return audit_increments; }
        public SectionCreateRequest setAuditIncrements(BigDecimal value) { this.audit_increments = value; return this; }
        public String getSectionCode() { return section_code; }
        public SectionCreateRequest setSectionCode(String value) { this.section_code = value; return this; }
        public String getTitle() { return title; }
        public SectionCreateRequest setTitle(String value) { this.title = value; return this; }
        public String getPrettyTitle() { return pretty_title; }
        public SectionCreateRequest setPrettyTitle(String value) { this.pretty_title = value; return this; }
        public String getOverrideCourseDescription() { return override_course_description; }
        public SectionCreateRequest setOverrideCourseDescription(String value) { this.override_course_description = value; return this; }
        public String getCurrentStatus() { return current_status; }
        public SectionCreateRequest setCurrentStatus(String value) { this.current_status = value; return this; }
        public String getLocation() { return location; }
        public SectionCreateRequest setLocation(String value) { this.location = value; return this; }
        public String getRoom() { return room; }
        public SectionCreateRequest setRoom(String value) { this.room = value; return this; }
        public Boolean getIsAudio() { return is_audio; }
        public SectionCreateRequest setIsAudio(Boolean value) { this.is_audio = value; return this; }
        public Boolean getIsOncampus() { return is_oncampus; }
        public SectionCreateRequest setIsOncampus(Boolean value) { this.is_oncampus = value; return this; }
        public String getDistanceEdMaterials() { return distance_ed_materials; }
        public SectionCreateRequest setDistanceEdMaterials(String value) { this.distance_ed_materials = value; return this; }
        public Date getStartDate() { return start_date; }
        public SectionCreateRequest setStartDate(Date value) { this.start_date = value; return this; }
        public Date getEndDate() { return end_date; }
        public SectionCreateRequest setEndDate(Date value) { this.end_date = value; return this; }
        public Date getFirstMeetingDate() { return first_meeting_date; }
        public SectionCreateRequest setFirstMeetingDate(Date value) { this.first_meeting_date = value; return this; }
        public Date getLastMeetingDate() { return last_meeting_date; }
        public SectionCreateRequest setLastMeetingDate(Date value) { this.last_meeting_date = value; return this; }
        public String getStartTimes() { return start_times; }
        public SectionCreateRequest setStartTimes(String value) { this.start_times = value; return this; }
        public String getEndTimes() { return end_times; }
        public SectionCreateRequest setEndTimes(String value) { this.end_times = value; return this; }
        public String getMeetingDays() { return meeting_days; }
        public SectionCreateRequest setMeetingDays(String value) { this.meeting_days = value; return this; }
        public Boolean getIsPassFail() { return is_pass_fail; }
        public SectionCreateRequest setIsPassFail(Boolean value) { this.is_pass_fail = value; return this; }
        public Boolean getIsWaitlist() { return is_waitlist; }
        public SectionCreateRequest setIsWaitlist(Boolean value) { this.is_waitlist = value; return this; }
        public Boolean isHasSpecialRequirements() { return has_special_requirements; }
        public SectionCreateRequest setHasSpecialRequirements(Boolean value) { this.has_special_requirements = value; return this; }
        public String getSpecialRequirements() { return special_requirements; }
        public SectionCreateRequest setSpecialRequirements(String value) { this.special_requirements = value; return this; }
        public Boolean getIsUnlisted() { return is_unlisted; }
        public SectionCreateRequest setIsUnlisted(Boolean value) { this.is_unlisted = value; return this; }
        public Integer getCapacity() { return capacity; }
        public SectionCreateRequest setCapacity(Integer value) { this.capacity = value; return this; }
        public BigDecimal getFlatFeeAmount() { return flat_fee_amount; }
        public SectionCreateRequest setFlatFeeAmount(BigDecimal value) { this.flat_fee_amount = value; return this; }
        public BigDecimal getAdditionalFeeAmount() { return additional_fee_amount; }
        public SectionCreateRequest setAdditionalFeeAmount(BigDecimal value) { this.additional_fee_amount = value; return this; }
        public Date getOverrideRegistrationStartDate() { return override_registration_start_date; }
        public SectionCreateRequest setOverrideRegistrationStartDate(Date value) { this.override_registration_start_date = value; return this; }
        public Date getOverrideRegistrationEndDate() { return override_registration_end_date; }
        public SectionCreateRequest setOverrideRegistrationEndDate(Date value) { this.override_registration_end_date = value; return this; }
        public Date getOverrideAddStartDate() { return override_add_start_date; }
        public SectionCreateRequest setOverrideAddStartDate(Date value) { this.override_add_start_date = value; return this; }
        public Date getOverrideAddEndDate() { return override_add_end_date; }
        public SectionCreateRequest setOverrideAddEndDate(Date value) { this.override_add_end_date = value; return this; }
        public Date getOverrideDropStartDate() { return override_drop_start_date; }
        public SectionCreateRequest setOverrideDropStartDate(Date value) { this.override_drop_start_date = value; return this; }
        public Date getOverrideDropEndDate() { return override_drop_end_date; }
        public SectionCreateRequest setOverrideDropEndDate(Date value) { this.override_drop_end_date = value; return this; }
        public Date getOverrideGradingEndDate() { return override_grading_end_date; }
        public SectionCreateRequest setOverrideGradingEndDate(Date value) { this.override_grading_end_date = value; return this; }
        public String getTerm() { return term; }
        public SectionCreateRequest setTerm(String value) { this.term = value; return this; }
        public String getReportingTerm() { return reporting_term; }
        public SectionCreateRequest setReportingTerm(String value) { this.reporting_term = value; return this; }
        public String getAuthorizingUuid() { return authorizing_uuid; }
        public SectionCreateRequest setAuthorizingUuid(String value) { this.authorizing_uuid = value; return this; }
    }

    public static class SectionResponse
    {
        public ResponseStatus responseStatus = null;
        public String secUUID = null;
        public String course_name = null;
        public String section_code = null;
        public String course_title = null;
        public String course_short_title = null;
        public String course_description = null;
        public String crosslist_description = null;
        public String crosslist_course_name = null;
        public String location_long_name = null;
        public String room = null;
        public ArrayList<InstructorResponse> instructors = null;
        public ArrayList<DocumentResponse> required_documents = null;
        public Date start_date = null;
        public Date end_date = null;
        public Date first_meeting_date = null;
        public Date last_meeting_date = null;
        public String meeting_days = null;
        public ArrayList<String> start_times = null;
        public ArrayList<String> end_times = null;
        public Boolean is_online_only = null;
        public Boolean is_weekend = null;
        public Boolean is_weekday = null;
        public Boolean is_evening = null;
        public Boolean is_waitlist = null;
        public Boolean has_special_requirements = null;
        public String special_requirements = null;
        public Boolean is_unlisted = null;
        public ArrayList<BigDecimal> credit_amounts = null;
        public ArrayList<BigDecimal> audit_amounts = null;
        public String audits_short_name = null;
        public String audits_long_name = null;
        public String credits_short_name = null;
        public String credits_long_name = null;
        public String distance_ed_materials = null;
        public String prerequisites = null;
        public String corequisites = null;
        public Integer capacity = null;
        public BigDecimal flat_fee_amount = null;
        public BigDecimal additional_fee_amount = null;
        public Integer registered_students = null;
        public Integer three_credit_plus = null;
        public Integer two_credit = null;
        public Integer one_credit = null;
        public Integer three_audit_plus = null;
        public Integer two_audit = null;
        public Integer one_audit = null;
        public Integer crosslist_registered_students = null;
        public Integer grades_received = null;
        public Integer crosslist_grades_received = null;
        public Date registration_start_date = null;
        public Date registration_end_date = null;
        public Date add_start_date = null;
        public Date add_end_date = null;
        public Date drop_start_date = null;
        public Date drop_end_date = null;
        public Date grading_end_date = 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 Date timestamp = null;
        
        public ResponseStatus getResponseStatus() { return responseStatus; }
        public SectionResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; }
        public String getSecUUID() { return secUUID; }
        public SectionResponse setSecUUID(String value) { this.secUUID = value; return this; }
        public String getCourseName() { return course_name; }
        public SectionResponse setCourseName(String value) { this.course_name = value; return this; }
        public String getSectionCode() { return section_code; }
        public SectionResponse setSectionCode(String value) { this.section_code = value; return this; }
        public String getCourseTitle() { return course_title; }
        public SectionResponse setCourseTitle(String value) { this.course_title = value; return this; }
        public String getCourseShortTitle() { return course_short_title; }
        public SectionResponse setCourseShortTitle(String value) { this.course_short_title = value; return this; }
        public String getCourseDescription() { return course_description; }
        public SectionResponse setCourseDescription(String value) { this.course_description = value; return this; }
        public String getCrosslistDescription() { return crosslist_description; }
        public SectionResponse setCrosslistDescription(String value) { this.crosslist_description = value; return this; }
        public String getCrosslistCourseName() { return crosslist_course_name; }
        public SectionResponse setCrosslistCourseName(String value) { this.crosslist_course_name = value; return this; }
        public String getLocationLongName() { return location_long_name; }
        public SectionResponse setLocationLongName(String value) { this.location_long_name = value; return this; }
        public String getRoom() { return room; }
        public SectionResponse setRoom(String value) { this.room = value; return this; }
        public ArrayList<InstructorResponse> getInstructors() { return instructors; }
        public SectionResponse setInstructors(ArrayList<InstructorResponse> value) { this.instructors = value; return this; }
        public ArrayList<DocumentResponse> getRequiredDocuments() { return required_documents; }
        public SectionResponse setRequiredDocuments(ArrayList<DocumentResponse> value) { this.required_documents = value; return this; }
        public Date getStartDate() { return start_date; }
        public SectionResponse setStartDate(Date value) { this.start_date = value; return this; }
        public Date getEndDate() { return end_date; }
        public SectionResponse setEndDate(Date value) { this.end_date = value; return this; }
        public Date getFirstMeetingDate() { return first_meeting_date; }
        public SectionResponse setFirstMeetingDate(Date value) { this.first_meeting_date = value; return this; }
        public Date getLastMeetingDate() { return last_meeting_date; }
        public SectionResponse setLastMeetingDate(Date value) { this.last_meeting_date = value; return this; }
        public String getMeetingDays() { return meeting_days; }
        public SectionResponse setMeetingDays(String value) { this.meeting_days = value; return this; }
        public ArrayList<String> getStartTimes() { return start_times; }
        public SectionResponse setStartTimes(ArrayList<String> value) { this.start_times = value; return this; }
        public ArrayList<String> getEndTimes() { return end_times; }
        public SectionResponse setEndTimes(ArrayList<String> value) { this.end_times = value; return this; }
        public Boolean getIsOnlineOnly() { return is_online_only; }
        public SectionResponse setIsOnlineOnly(Boolean value) { this.is_online_only = value; return this; }
        public Boolean getIsWeekend() { return is_weekend; }
        public SectionResponse setIsWeekend(Boolean value) { this.is_weekend = value; return this; }
        public Boolean getIsWeekday() { return is_weekday; }
        public SectionResponse setIsWeekday(Boolean value) { this.is_weekday = value; return this; }
        public Boolean getIsEvening() { return is_evening; }
        public SectionResponse setIsEvening(Boolean value) { this.is_evening = value; return this; }
        public Boolean getIsWaitlist() { return is_waitlist; }
        public SectionResponse setIsWaitlist(Boolean value) { this.is_waitlist = value; return this; }
        public Boolean isHasSpecialRequirements() { return has_special_requirements; }
        public SectionResponse setHasSpecialRequirements(Boolean value) { this.has_special_requirements = value; return this; }
        public String getSpecialRequirements() { return special_requirements; }
        public SectionResponse setSpecialRequirements(String value) { this.special_requirements = value; return this; }
        public Boolean getIsUnlisted() { return is_unlisted; }
        public SectionResponse setIsUnlisted(Boolean value) { this.is_unlisted = value; return this; }
        public ArrayList<BigDecimal> getCreditAmounts() { return credit_amounts; }
        public SectionResponse setCreditAmounts(ArrayList<BigDecimal> value) { this.credit_amounts = value; return this; }
        public ArrayList<BigDecimal> getAuditAmounts() { return audit_amounts; }
        public SectionResponse setAuditAmounts(ArrayList<BigDecimal> value) { this.audit_amounts = value; return this; }
        public String getAuditsShortName() { return audits_short_name; }
        public SectionResponse setAuditsShortName(String value) { this.audits_short_name = value; return this; }
        public String getAuditsLongName() { return audits_long_name; }
        public SectionResponse setAuditsLongName(String value) { this.audits_long_name = value; return this; }
        public String getCreditsShortName() { return credits_short_name; }
        public SectionResponse setCreditsShortName(String value) { this.credits_short_name = value; return this; }
        public String getCreditsLongName() { return credits_long_name; }
        public SectionResponse setCreditsLongName(String value) { this.credits_long_name = value; return this; }
        public String getDistanceEdMaterials() { return distance_ed_materials; }
        public SectionResponse setDistanceEdMaterials(String value) { this.distance_ed_materials = value; return this; }
        public String getPrerequisites() { return prerequisites; }
        public SectionResponse setPrerequisites(String value) { this.prerequisites = value; return this; }
        public String getCorequisites() { return corequisites; }
        public SectionResponse setCorequisites(String value) { this.corequisites = value; return this; }
        public Integer getCapacity() { return capacity; }
        public SectionResponse setCapacity(Integer value) { this.capacity = value; return this; }
        public BigDecimal getFlatFeeAmount() { return flat_fee_amount; }
        public SectionResponse setFlatFeeAmount(BigDecimal value) { this.flat_fee_amount = value; return this; }
        public BigDecimal getAdditionalFeeAmount() { return additional_fee_amount; }
        public SectionResponse setAdditionalFeeAmount(BigDecimal value) { this.additional_fee_amount = value; return this; }
        public Integer getRegisteredStudents() { return registered_students; }
        public SectionResponse setRegisteredStudents(Integer value) { this.registered_students = value; return this; }
        public Integer getThreeCreditPlus() { return three_credit_plus; }
        public SectionResponse setThreeCreditPlus(Integer value) { this.three_credit_plus = value; return this; }
        public Integer getTwoCredit() { return two_credit; }
        public SectionResponse setTwoCredit(Integer value) { this.two_credit = value; return this; }
        public Integer getOneCredit() { return one_credit; }
        public SectionResponse setOneCredit(Integer value) { this.one_credit = value; return this; }
        public Integer getThreeAuditPlus() { return three_audit_plus; }
        public SectionResponse setThreeAuditPlus(Integer value) { this.three_audit_plus = value; return this; }
        public Integer getTwoAudit() { return two_audit; }
        public SectionResponse setTwoAudit(Integer value) { this.two_audit = value; return this; }
        public Integer getOneAudit() { return one_audit; }
        public SectionResponse setOneAudit(Integer value) { this.one_audit = value; return this; }
        public Integer getCrosslistRegisteredStudents() { return crosslist_registered_students; }
        public SectionResponse setCrosslistRegisteredStudents(Integer value) { this.crosslist_registered_students = value; return this; }
        public Integer getGradesReceived() { return grades_received; }
        public SectionResponse setGradesReceived(Integer value) { this.grades_received = value; return this; }
        public Integer getCrosslistGradesReceived() { return crosslist_grades_received; }
        public SectionResponse setCrosslistGradesReceived(Integer value) { this.crosslist_grades_received = value; return this; }
        public Date getRegistrationStartDate() { return registration_start_date; }
        public SectionResponse setRegistrationStartDate(Date value) { this.registration_start_date = value; return this; }
        public Date getRegistrationEndDate() { return registration_end_date; }
        public SectionResponse setRegistrationEndDate(Date value) { this.registration_end_date = value; return this; }
        public Date getAddStartDate() { return add_start_date; }
        public SectionResponse setAddStartDate(Date value) { this.add_start_date = value; return this; }
        public Date getAddEndDate() { return add_end_date; }
        public SectionResponse setAddEndDate(Date value) { this.add_end_date = value; return this; }
        public Date getDropStartDate() { return drop_start_date; }
        public SectionResponse setDropStartDate(Date value) { this.drop_start_date = value; return this; }
        public Date getDropEndDate() { return drop_end_date; }
        public SectionResponse setDropEndDate(Date value) { this.drop_end_date = value; return this; }
        public Date getGradingEndDate() { return grading_end_date; }
        public SectionResponse setGradingEndDate(Date value) { this.grading_end_date = value; return this; }
        public String getTerm() { return term; }
        public SectionResponse setTerm(String value) { this.term = value; return this; }
        public String getReportingTerm() { return reporting_term; }
        public SectionResponse setReportingTerm(String value) { this.reporting_term = value; return this; }
        public Integer getReportingYear() { return reporting_year; }
        public SectionResponse setReportingYear(Integer value) { this.reporting_year = value; return this; }
        public String getCurrentStatus() { return current_status; }
        public SectionResponse setCurrentStatus(String value) { this.current_status = value; return this; }
        public String getAddedBy() { return added_by; }
        public SectionResponse setAddedBy(String value) { this.added_by = value; return this; }
        public Date getAddedDate() { return added_date; }
        public SectionResponse setAddedDate(Date value) { this.added_date = value; return this; }
        public String getChangedBy() { return changed_by; }
        public SectionResponse setChangedBy(String value) { this.changed_by = value; return this; }
        public Date getChangedDate() { return changed_date; }
        public SectionResponse setChangedDate(Date value) { this.changed_date = value; return this; }
        public Date getTimestamp() { return timestamp; }
        public SectionResponse setTimestamp(Date value) { this.timestamp = value; return this; }
    }

    public static class InstructorResponse
    {
        public ResponseStatus responseStatus = null;
        public Integer regent_id = null;
        public String regent_login = null;
        public String preferred_name = null;
        public String first_name = null;
        public String last_name = null;
        public String full_name = null;
        public String email = null;
        public String image_base64 = null;
        
        public ResponseStatus getResponseStatus() { return responseStatus; }
        public InstructorResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; }
        public Integer getRegentId() { return regent_id; }
        public InstructorResponse setRegentId(Integer value) { this.regent_id = value; return this; }
        public String getRegentLogin() { return regent_login; }
        public InstructorResponse setRegentLogin(String value) { this.regent_login = value; return this; }
        public String getPreferredName() { return preferred_name; }
        public InstructorResponse setPreferredName(String value) { this.preferred_name = value; return this; }
        public String getFirstName() { return first_name; }
        public InstructorResponse setFirstName(String value) { this.first_name = value; return this; }
        public String getLastName() { return last_name; }
        public InstructorResponse setLastName(String value) { this.last_name = value; return this; }
        public String getFullName() { return full_name; }
        public InstructorResponse setFullName(String value) { this.full_name = value; return this; }
        public String getEmail() { return email; }
        public InstructorResponse setEmail(String value) { this.email = value; return this; }
        public String getImageBase64() { return image_base64; }
        public InstructorResponse setImageBase64(String value) { this.image_base64 = value; return this; }
    }

    public static class DocumentResponse
    {
        public String code = null;
        public String document_name = null;
        public String document_description = null;
        
        public String getCode() { return code; }
        public DocumentResponse setCode(String value) { this.code = value; return this; }
        public String getDocumentName() { return document_name; }
        public DocumentResponse setDocumentName(String value) { this.document_name = value; return this; }
        public String getDocumentDescription() { return document_description; }
        public DocumentResponse setDocumentDescription(String value) { this.document_description = value; return this; }
    }

}

Java SectionCreateRequest 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 /Sections/Admin/{reporting_term}/Create HTTP/1.1 
Host: data.regent-college.edu 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<SectionCreateRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/regis.ClassLibrary.Requests">
  <additional_fee_amount>0</additional_fee_amount>
  <audit_increments>0</audit_increments>
  <authorizing_uuid>String</authorizing_uuid>
  <capacity>0</capacity>
  <course_id>0</course_id>
  <course_name>String</course_name>
  <credit_increments>0</credit_increments>
  <current_status>String</current_status>
  <distance_ed_materials>String</distance_ed_materials>
  <end_date>0001-01-01T00:00:00</end_date>
  <end_times>String</end_times>
  <first_meeting_date>0001-01-01T00:00:00</first_meeting_date>
  <flat_fee_amount>0</flat_fee_amount>
  <has_special_requirements>false</has_special_requirements>
  <is_audio>false</is_audio>
  <is_oncampus>false</is_oncampus>
  <is_pass_fail>false</is_pass_fail>
  <is_unlisted>false</is_unlisted>
  <is_waitlist>false</is_waitlist>
  <last_meeting_date>0001-01-01T00:00:00</last_meeting_date>
  <location>String</location>
  <max_audits>0</max_audits>
  <max_credits>0</max_credits>
  <meeting_days>String</meeting_days>
  <min_audits>0</min_audits>
  <min_credits>0</min_credits>
  <override_add_end_date>0001-01-01T00:00:00</override_add_end_date>
  <override_add_start_date>0001-01-01T00:00:00</override_add_start_date>
  <override_course_description>String</override_course_description>
  <override_drop_end_date>0001-01-01T00:00:00</override_drop_end_date>
  <override_drop_start_date>0001-01-01T00:00:00</override_drop_start_date>
  <override_grading_end_date>0001-01-01T00:00:00</override_grading_end_date>
  <override_registration_end_date>0001-01-01T00:00:00</override_registration_end_date>
  <override_registration_start_date>0001-01-01T00:00:00</override_registration_start_date>
  <pretty_title>String</pretty_title>
  <reporting_term>String</reporting_term>
  <room>String</room>
  <section_code>String</section_code>
  <special_requirements>String</special_requirements>
  <start_date>0001-01-01T00:00:00</start_date>
  <start_times>String</start_times>
  <term>String</term>
  <title>String</title>
</SectionCreateRequest>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<SectionResponse 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>
  <add_end_date>0001-01-01T00:00:00</add_end_date>
  <add_start_date>0001-01-01T00:00:00</add_start_date>
  <added_by>String</added_by>
  <added_date>0001-01-01T00:00:00</added_date>
  <additional_fee_amount>0</additional_fee_amount>
  <audit_amounts xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:decimal>0</d2p1:decimal>
  </audit_amounts>
  <audits_long_name>String</audits_long_name>
  <audits_short_name>String</audits_short_name>
  <capacity>0</capacity>
  <changed_by>String</changed_by>
  <changed_date>0001-01-01T00:00:00</changed_date>
  <corequisites>String</corequisites>
  <course_description>String</course_description>
  <course_name>String</course_name>
  <course_short_title>String</course_short_title>
  <course_title>String</course_title>
  <credit_amounts xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:decimal>0</d2p1:decimal>
  </credit_amounts>
  <credits_long_name>String</credits_long_name>
  <credits_short_name>String</credits_short_name>
  <crosslist_course_name>String</crosslist_course_name>
  <crosslist_description>String</crosslist_description>
  <crosslist_grades_received>0</crosslist_grades_received>
  <crosslist_registered_students>0</crosslist_registered_students>
  <current_status>String</current_status>
  <distance_ed_materials>String</distance_ed_materials>
  <drop_end_date>0001-01-01T00:00:00</drop_end_date>
  <drop_start_date>0001-01-01T00:00:00</drop_start_date>
  <end_date>0001-01-01T00:00:00</end_date>
  <end_times xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>String</d2p1:string>
  </end_times>
  <first_meeting_date>0001-01-01T00:00:00</first_meeting_date>
  <flat_fee_amount>0</flat_fee_amount>
  <grades_received>0</grades_received>
  <grading_end_date>0001-01-01T00:00:00</grading_end_date>
  <has_special_requirements>false</has_special_requirements>
  <instructors>
    <InstructorResponse>
      <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>
      <email>String</email>
      <first_name>String</first_name>
      <full_name>String</full_name>
      <image_base64>String</image_base64>
      <last_name>String</last_name>
      <preferred_name>String</preferred_name>
      <regent_id>0</regent_id>
      <regent_login>String</regent_login>
    </InstructorResponse>
  </instructors>
  <is_evening>false</is_evening>
  <is_online_only>false</is_online_only>
  <is_unlisted>false</is_unlisted>
  <is_waitlist>false</is_waitlist>
  <is_weekday>false</is_weekday>
  <is_weekend>false</is_weekend>
  <last_meeting_date>0001-01-01T00:00:00</last_meeting_date>
  <location_long_name>String</location_long_name>
  <meeting_days>String</meeting_days>
  <one_audit>0</one_audit>
  <one_credit>0</one_credit>
  <prerequisites>String</prerequisites>
  <registered_students>0</registered_students>
  <registration_end_date>0001-01-01T00:00:00</registration_end_date>
  <registration_start_date>0001-01-01T00:00:00</registration_start_date>
  <reporting_term>String</reporting_term>
  <reporting_year>0</reporting_year>
  <required_documents>
    <DocumentResponse>
      <code>String</code>
      <document_description>String</document_description>
      <document_name>String</document_name>
    </DocumentResponse>
  </required_documents>
  <room>String</room>
  <secUUID>String</secUUID>
  <section_code>String</section_code>
  <special_requirements>String</special_requirements>
  <start_date>0001-01-01T00:00:00</start_date>
  <start_times xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>String</d2p1:string>
  </start_times>
  <term>String</term>
  <three_audit_plus>0</three_audit_plus>
  <three_credit_plus>0</three_credit_plus>
  <timestamp>0001-01-01T00:00:00</timestamp>
  <two_audit>0</two_audit>
  <two_credit>0</two_credit>
</SectionResponse>