regis

<back to all web services

SectionsAdminRequest

Requires Authentication
Required role:REGISUserRole
The following routes are available for this service:
POST/Sections/Admin/{reporting_term}
import 'package:servicestack/servicestack.dart';
import 'dart:typed_data';

class SectionAdminResponse implements IConvertible
{
    String? uuid;
    int? section_id;
    int? course_id;
    String? course_name;
    double? min_credits;
    double? max_credits;
    double? credit_increments;
    double? min_audits;
    double? max_audits;
    double? audit_increments;
    String? section_code;
    String? title;
    String? pretty_title;
    String? override_course_description;
    String? current_status;
    String? location;
    String? room;
    bool? is_audio;
    bool? is_oncampus;
    String? distance_ed_materials;
    DateTime? start_date;
    DateTime? end_date;
    DateTime? first_meeting_date;
    DateTime? last_meeting_date;
    String? meeting_days;
    String? start_times;
    String? end_times;
    bool? is_pass_fail;
    bool? is_weekend;
    bool? is_weekday;
    bool? is_evening;
    bool? is_waitlist;
    bool? has_special_requirements;
    String? special_requirements;
    bool? is_unlisted;
    int? capacity;
    double? flat_fee_amount;
    double? additional_fee_amount;
    DateTime? override_registration_start_date;
    DateTime? override_registration_end_date;
    DateTime? override_add_start_date;
    DateTime? override_add_end_date;
    DateTime? override_drop_start_date;
    DateTime? override_drop_end_date;
    DateTime? override_grading_end_date;
    String? term;
    String? reporting_term;
    int? reporting_year;
    DateTime? added_date;
    String? added_by;
    DateTime? changed_date;
    String? changed_by;
    DateTime? timestamp;

    SectionAdminResponse({this.uuid,this.section_id,this.course_id,this.course_name,this.min_credits,this.max_credits,this.credit_increments,this.min_audits,this.max_audits,this.audit_increments,this.section_code,this.title,this.pretty_title,this.override_course_description,this.current_status,this.location,this.room,this.is_audio,this.is_oncampus,this.distance_ed_materials,this.start_date,this.end_date,this.first_meeting_date,this.last_meeting_date,this.meeting_days,this.start_times,this.end_times,this.is_pass_fail,this.is_weekend,this.is_weekday,this.is_evening,this.is_waitlist,this.has_special_requirements,this.special_requirements,this.is_unlisted,this.capacity,this.flat_fee_amount,this.additional_fee_amount,this.override_registration_start_date,this.override_registration_end_date,this.override_add_start_date,this.override_add_end_date,this.override_drop_start_date,this.override_drop_end_date,this.override_grading_end_date,this.term,this.reporting_term,this.reporting_year,this.added_date,this.added_by,this.changed_date,this.changed_by,this.timestamp});
    SectionAdminResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        uuid = json['uuid'];
        section_id = json['section_id'];
        course_id = json['course_id'];
        course_name = json['course_name'];
        min_credits = JsonConverters.toDouble(json['min_credits']);
        max_credits = JsonConverters.toDouble(json['max_credits']);
        credit_increments = JsonConverters.toDouble(json['credit_increments']);
        min_audits = JsonConverters.toDouble(json['min_audits']);
        max_audits = JsonConverters.toDouble(json['max_audits']);
        audit_increments = JsonConverters.toDouble(json['audit_increments']);
        section_code = json['section_code'];
        title = json['title'];
        pretty_title = json['pretty_title'];
        override_course_description = json['override_course_description'];
        current_status = json['current_status'];
        location = json['location'];
        room = json['room'];
        is_audio = json['is_audio'];
        is_oncampus = json['is_oncampus'];
        distance_ed_materials = json['distance_ed_materials'];
        start_date = JsonConverters.fromJson(json['start_date'],'DateTime',context!);
        end_date = JsonConverters.fromJson(json['end_date'],'DateTime',context!);
        first_meeting_date = JsonConverters.fromJson(json['first_meeting_date'],'DateTime',context!);
        last_meeting_date = JsonConverters.fromJson(json['last_meeting_date'],'DateTime',context!);
        meeting_days = json['meeting_days'];
        start_times = json['start_times'];
        end_times = json['end_times'];
        is_pass_fail = json['is_pass_fail'];
        is_weekend = json['is_weekend'];
        is_weekday = json['is_weekday'];
        is_evening = json['is_evening'];
        is_waitlist = json['is_waitlist'];
        has_special_requirements = json['has_special_requirements'];
        special_requirements = json['special_requirements'];
        is_unlisted = json['is_unlisted'];
        capacity = json['capacity'];
        flat_fee_amount = JsonConverters.toDouble(json['flat_fee_amount']);
        additional_fee_amount = JsonConverters.toDouble(json['additional_fee_amount']);
        override_registration_start_date = JsonConverters.fromJson(json['override_registration_start_date'],'DateTime',context!);
        override_registration_end_date = JsonConverters.fromJson(json['override_registration_end_date'],'DateTime',context!);
        override_add_start_date = JsonConverters.fromJson(json['override_add_start_date'],'DateTime',context!);
        override_add_end_date = JsonConverters.fromJson(json['override_add_end_date'],'DateTime',context!);
        override_drop_start_date = JsonConverters.fromJson(json['override_drop_start_date'],'DateTime',context!);
        override_drop_end_date = JsonConverters.fromJson(json['override_drop_end_date'],'DateTime',context!);
        override_grading_end_date = JsonConverters.fromJson(json['override_grading_end_date'],'DateTime',context!);
        term = json['term'];
        reporting_term = json['reporting_term'];
        reporting_year = json['reporting_year'];
        added_date = JsonConverters.fromJson(json['added_date'],'DateTime',context!);
        added_by = json['added_by'];
        changed_date = JsonConverters.fromJson(json['changed_date'],'DateTime',context!);
        changed_by = json['changed_by'];
        timestamp = JsonConverters.fromJson(json['timestamp'],'DateTime',context!);
        return this;
    }

    Map<String, dynamic> toJson() => {
        'uuid': uuid,
        'section_id': section_id,
        'course_id': course_id,
        'course_name': course_name,
        'min_credits': min_credits,
        'max_credits': max_credits,
        'credit_increments': credit_increments,
        'min_audits': min_audits,
        'max_audits': max_audits,
        'audit_increments': audit_increments,
        'section_code': section_code,
        'title': title,
        'pretty_title': pretty_title,
        'override_course_description': override_course_description,
        'current_status': current_status,
        'location': location,
        'room': room,
        'is_audio': is_audio,
        'is_oncampus': is_oncampus,
        'distance_ed_materials': distance_ed_materials,
        'start_date': JsonConverters.toJson(start_date,'DateTime',context!),
        'end_date': JsonConverters.toJson(end_date,'DateTime',context!),
        'first_meeting_date': JsonConverters.toJson(first_meeting_date,'DateTime',context!),
        'last_meeting_date': JsonConverters.toJson(last_meeting_date,'DateTime',context!),
        'meeting_days': meeting_days,
        'start_times': start_times,
        'end_times': end_times,
        'is_pass_fail': is_pass_fail,
        'is_weekend': is_weekend,
        'is_weekday': is_weekday,
        'is_evening': is_evening,
        'is_waitlist': is_waitlist,
        'has_special_requirements': has_special_requirements,
        'special_requirements': special_requirements,
        'is_unlisted': is_unlisted,
        'capacity': capacity,
        'flat_fee_amount': flat_fee_amount,
        'additional_fee_amount': additional_fee_amount,
        'override_registration_start_date': JsonConverters.toJson(override_registration_start_date,'DateTime',context!),
        'override_registration_end_date': JsonConverters.toJson(override_registration_end_date,'DateTime',context!),
        'override_add_start_date': JsonConverters.toJson(override_add_start_date,'DateTime',context!),
        'override_add_end_date': JsonConverters.toJson(override_add_end_date,'DateTime',context!),
        'override_drop_start_date': JsonConverters.toJson(override_drop_start_date,'DateTime',context!),
        'override_drop_end_date': JsonConverters.toJson(override_drop_end_date,'DateTime',context!),
        'override_grading_end_date': JsonConverters.toJson(override_grading_end_date,'DateTime',context!),
        'term': term,
        'reporting_term': reporting_term,
        'reporting_year': reporting_year,
        'added_date': JsonConverters.toJson(added_date,'DateTime',context!),
        'added_by': added_by,
        'changed_date': JsonConverters.toJson(changed_date,'DateTime',context!),
        'changed_by': changed_by,
        'timestamp': JsonConverters.toJson(timestamp,'DateTime',context!)
    };

    getTypeName() => "SectionAdminResponse";
    TypeContext? context = _ctx;
}

class SectionsAdminResponse implements IConvertible
{
    ResponseStatus? responseStatus;
    String? reporting_term;
    List<SectionAdminResponse>? sections;
    Map<int,List<SectionRateWithAmountResponse>?>? section_rates;
    Map<int,List<SectionRefundScheduleResponse>?>? section_refund_schedules;
    List<String>? locations;
    Map<int,List<InstructorResponse>?>? section_instructors;
    Map<int,List<String>?>? section_document_codes;
    Map<int,List<int>?>? crosslisted_sections;

    SectionsAdminResponse({this.responseStatus,this.reporting_term,this.sections,this.section_rates,this.section_refund_schedules,this.locations,this.section_instructors,this.section_document_codes,this.crosslisted_sections});
    SectionsAdminResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        responseStatus = JsonConverters.fromJson(json['responseStatus'],'ResponseStatus',context!);
        reporting_term = json['reporting_term'];
        sections = JsonConverters.fromJson(json['sections'],'List<SectionAdminResponse>',context!);
        section_rates = JsonConverters.fromJson(json['section_rates'],'Map<int,List<SectionRateWithAmountResponse>?>',context!);
        section_refund_schedules = JsonConverters.fromJson(json['section_refund_schedules'],'Map<int,List<SectionRefundScheduleResponse>?>',context!);
        locations = JsonConverters.fromJson(json['locations'],'List<String>',context!);
        section_instructors = JsonConverters.fromJson(json['section_instructors'],'Map<int,List<InstructorResponse>?>',context!);
        section_document_codes = JsonConverters.fromJson(json['section_document_codes'],'Map<int,List<String>?>',context!);
        crosslisted_sections = JsonConverters.fromJson(json['crosslisted_sections'],'Map<int,List<int>?>',context!);
        return this;
    }

    Map<String, dynamic> toJson() => {
        'responseStatus': JsonConverters.toJson(responseStatus,'ResponseStatus',context!),
        'reporting_term': reporting_term,
        'sections': JsonConverters.toJson(sections,'List<SectionAdminResponse>',context!),
        'section_rates': JsonConverters.toJson(section_rates,'Map<int,List<SectionRateWithAmountResponse>?>',context!),
        'section_refund_schedules': JsonConverters.toJson(section_refund_schedules,'Map<int,List<SectionRefundScheduleResponse>?>',context!),
        'locations': JsonConverters.toJson(locations,'List<String>',context!),
        'section_instructors': JsonConverters.toJson(section_instructors,'Map<int,List<InstructorResponse>?>',context!),
        'section_document_codes': JsonConverters.toJson(section_document_codes,'Map<int,List<String>?>',context!),
        'crosslisted_sections': JsonConverters.toJson(crosslisted_sections,'Map<int,List<int>?>',context!)
    };

    getTypeName() => "SectionsAdminResponse";
    TypeContext? context = _ctx;
}

class SectionsAdminRequest implements IConvertible
{
    String? reporting_term;

    SectionsAdminRequest({this.reporting_term});
    SectionsAdminRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        reporting_term = json['reporting_term'];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'reporting_term': reporting_term
    };

    getTypeName() => "SectionsAdminRequest";
    TypeContext? context = _ctx;
}

TypeContext _ctx = TypeContext(library: 'data.regent_college.edu', types: <String, TypeInfo> {
    'SectionAdminResponse': TypeInfo(TypeOf.Class, create:() => SectionAdminResponse()),
    'SectionsAdminResponse': TypeInfo(TypeOf.Class, create:() => SectionsAdminResponse()),
    'List<SectionAdminResponse>': TypeInfo(TypeOf.Class, create:() => <SectionAdminResponse>[]),
    'Map<int,List<SectionRateWithAmountResponse>?>': TypeInfo(TypeOf.Class, create:() => Map<int,List<SectionRateWithAmountResponse>?>()),
    'List<SectionRateWithAmountResponse>': TypeInfo(TypeOf.Class, create:() => <SectionRateWithAmountResponse>[]),
    'SectionRateWithAmountResponse': TypeInfo(TypeOf.Class, create:() => SectionRateWithAmountResponse()),
    'Map<int,List<SectionRefundScheduleResponse>?>': TypeInfo(TypeOf.Class, create:() => Map<int,List<SectionRefundScheduleResponse>?>()),
    'List<SectionRefundScheduleResponse>': TypeInfo(TypeOf.Class, create:() => <SectionRefundScheduleResponse>[]),
    'SectionRefundScheduleResponse': TypeInfo(TypeOf.Class, create:() => SectionRefundScheduleResponse()),
    'Map<int,List<InstructorResponse>?>': TypeInfo(TypeOf.Class, create:() => Map<int,List<InstructorResponse>?>()),
    'List<InstructorResponse>': TypeInfo(TypeOf.Class, create:() => <InstructorResponse>[]),
    'InstructorResponse': TypeInfo(TypeOf.Class, create:() => InstructorResponse()),
    'Map<int,List<String>?>': TypeInfo(TypeOf.Class, create:() => Map<int,List<String>?>()),
    'Map<int,List<int>?>': TypeInfo(TypeOf.Class, create:() => Map<int,List<int>?>()),
    'SectionsAdminRequest': TypeInfo(TypeOf.Class, create:() => SectionsAdminRequest()),
});

Dart SectionsAdminRequest 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} HTTP/1.1 
Host: data.regent-college.edu 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

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

<SectionsAdminResponse 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>
  <crosslisted_sections xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:KeyValueOfintArrayOfintty7Ep6D1>
      <d2p1:Key>0</d2p1:Key>
      <d2p1:Value>
        <d2p1:int>0</d2p1:int>
      </d2p1:Value>
    </d2p1:KeyValueOfintArrayOfintty7Ep6D1>
  </crosslisted_sections>
  <locations xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>String</d2p1:string>
  </locations>
  <reporting_term>String</reporting_term>
  <section_document_codes xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:KeyValueOfintArrayOfstringty7Ep6D1>
      <d2p1:Key>0</d2p1:Key>
      <d2p1:Value>
        <d2p1:string>String</d2p1:string>
      </d2p1:Value>
    </d2p1:KeyValueOfintArrayOfstringty7Ep6D1>
  </section_document_codes>
  <section_instructors xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:KeyValueOfintArrayOfInstructorResponsezpaGewPN>
      <d2p1:Key>0</d2p1:Key>
      <d2p1:Value>
        <InstructorResponse>
          <ResponseStatus xmlns:d6p1="http://schemas.servicestack.net/types">
            <d6p1:ErrorCode>String</d6p1:ErrorCode>
            <d6p1:Message>String</d6p1:Message>
            <d6p1:StackTrace>String</d6p1:StackTrace>
            <d6p1:Errors>
              <d6p1:ResponseError>
                <d6p1:ErrorCode>String</d6p1:ErrorCode>
                <d6p1:FieldName>String</d6p1:FieldName>
                <d6p1:Message>String</d6p1:Message>
                <d6p1:Meta>
                  <d2p1:KeyValueOfstringstring>
                    <d2p1:Key>String</d2p1:Key>
                    <d2p1:Value>String</d2p1:Value>
                  </d2p1:KeyValueOfstringstring>
                </d6p1:Meta>
              </d6p1:ResponseError>
            </d6p1:Errors>
            <d6p1:Meta>
              <d2p1:KeyValueOfstringstring>
                <d2p1:Key>String</d2p1:Key>
                <d2p1:Value>String</d2p1:Value>
              </d2p1:KeyValueOfstringstring>
            </d6p1: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>
      </d2p1:Value>
    </d2p1:KeyValueOfintArrayOfInstructorResponsezpaGewPN>
  </section_instructors>
  <section_rates xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:KeyValueOfintArrayOfSectionRateWithAmountResponsezpaGewPN>
      <d2p1:Key>0</d2p1:Key>
      <d2p1:Value>
        <SectionRateWithAmountResponse>
          <ResponseStatus xmlns:d6p1="http://schemas.servicestack.net/types">
            <d6p1:ErrorCode>String</d6p1:ErrorCode>
            <d6p1:Message>String</d6p1:Message>
            <d6p1:StackTrace>String</d6p1:StackTrace>
            <d6p1:Errors>
              <d6p1:ResponseError>
                <d6p1:ErrorCode>String</d6p1:ErrorCode>
                <d6p1:FieldName>String</d6p1:FieldName>
                <d6p1:Message>String</d6p1:Message>
                <d6p1:Meta>
                  <d2p1:KeyValueOfstringstring>
                    <d2p1:Key>String</d2p1:Key>
                    <d2p1:Value>String</d2p1:Value>
                  </d2p1:KeyValueOfstringstring>
                </d6p1:Meta>
              </d6p1:ResponseError>
            </d6p1:Errors>
            <d6p1:Meta>
              <d2p1:KeyValueOfstringstring>
                <d2p1:Key>String</d2p1:Key>
                <d2p1:Value>String</d2p1:Value>
              </d2p1:KeyValueOfstringstring>
            </d6p1:Meta>
          </ResponseStatus>
          <course_name>String</course_name>
          <is_override_audit_rate>false</is_override_audit_rate>
          <is_override_credit_rate>false</is_override_credit_rate>
          <rate_code>String</rate_code>
          <rate_description>String</rate_description>
          <reporting_term>String</reporting_term>
          <secUUID>String</secUUID>
          <section_code>String</section_code>
          <section_id>0</section_id>
          <title>String</title>
          <uuid>String</uuid>
          <charge>0</charge>
          <credit>0</credit>
          <rate_id>0</rate_id>
        </SectionRateWithAmountResponse>
      </d2p1:Value>
    </d2p1:KeyValueOfintArrayOfSectionRateWithAmountResponsezpaGewPN>
  </section_rates>
  <section_refund_schedules xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:KeyValueOfintArrayOfSectionRefundScheduleResponsezpaGewPN>
      <d2p1:Key>0</d2p1:Key>
      <d2p1:Value>
        <SectionRefundScheduleResponse>
          <ResponseStatus xmlns:d6p1="http://schemas.servicestack.net/types">
            <d6p1:ErrorCode>String</d6p1:ErrorCode>
            <d6p1:Message>String</d6p1:Message>
            <d6p1:StackTrace>String</d6p1:StackTrace>
            <d6p1:Errors>
              <d6p1:ResponseError>
                <d6p1:ErrorCode>String</d6p1:ErrorCode>
                <d6p1:FieldName>String</d6p1:FieldName>
                <d6p1:Message>String</d6p1:Message>
                <d6p1:Meta>
                  <d2p1:KeyValueOfstringstring>
                    <d2p1:Key>String</d2p1:Key>
                    <d2p1:Value>String</d2p1:Value>
                  </d2p1:KeyValueOfstringstring>
                </d6p1:Meta>
              </d6p1:ResponseError>
            </d6p1:Errors>
            <d6p1:Meta>
              <d2p1:KeyValueOfstringstring>
                <d2p1:Key>String</d2p1:Key>
                <d2p1:Value>String</d2p1:Value>
              </d2p1:KeyValueOfstringstring>
            </d6p1:Meta>
          </ResponseStatus>
          <course_name>String</course_name>
          <end_date>0001-01-01T00:00:00</end_date>
          <percentage>0</percentage>
          <rate_code>String</rate_code>
          <rate_description>String</rate_description>
          <reporting_term>String</reporting_term>
          <secUUID>String</secUUID>
          <section_code>String</section_code>
          <section_id>0</section_id>
          <start_date>0001-01-01T00:00:00</start_date>
          <title>String</title>
          <uuid>String</uuid>
        </SectionRefundScheduleResponse>
      </d2p1:Value>
    </d2p1:KeyValueOfintArrayOfSectionRefundScheduleResponsezpaGewPN>
  </section_refund_schedules>
  <sections>
    <SectionAdminResponse>
      <added_by>String</added_by>
      <added_date>0001-01-01T00:00:00</added_date>
      <additional_fee_amount>0</additional_fee_amount>
      <audit_increments>0</audit_increments>
      <capacity>0</capacity>
      <changed_by>String</changed_by>
      <changed_date>0001-01-01T00:00:00</changed_date>
      <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_evening>false</is_evening>
      <is_oncampus>false</is_oncampus>
      <is_pass_fail>false</is_pass_fail>
      <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>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>
      <reporting_year>0</reporting_year>
      <room>String</room>
      <section_code>String</section_code>
      <section_id>0</section_id>
      <special_requirements>String</special_requirements>
      <start_date>0001-01-01T00:00:00</start_date>
      <start_times>String</start_times>
      <term>String</term>
      <timestamp>0001-01-01T00:00:00</timestamp>
      <title>String</title>
      <uuid>String</uuid>
    </SectionAdminResponse>
  </sections>
</SectionsAdminResponse>