/* Options: Date: 2024-10-06 10:33:05 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://data.regent-college.edu //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: SectionAvailableForStudentRequest.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using regis.ClassLibrary.Responses; using regis.ClassLibrary.Requests; namespace regis.ClassLibrary.Requests { [Route("/Sections/Available/{uuid}/Term/{reporting_term}/Section/{secUUID}", "POST")] public partial class SectionAvailableForStudentRequest : IReturn { public virtual string transaction_uuid { get; set; } public virtual string uuid { get; set; } public virtual string secUUID { get; set; } public virtual string reporting_term { get; set; } } } namespace regis.ClassLibrary.Responses { public partial class SectionAvailableForStudentResponse : SectionResponse { public SectionAvailableForStudentResponse() { ruleMessages = new List{}; } public virtual string uuid { get; set; } public virtual string studentSectionUUID { get; set; } public virtual decimal? registered_amount { get; set; } public virtual bool is_full { get; set; } public virtual bool is_too_late { get; set; } public virtual bool is_too_early { get; set; } public virtual bool is_audit { get; set; } public virtual bool is_selected { get; set; } public virtual bool is_registered { get; set; } public virtual bool is_provisional { get; set; } public virtual bool is_missing_requisites { get; set; } public virtual bool is_completed { get; set; } public virtual decimal? maximum_credit_hours { get; set; } public virtual decimal? maximum_audit_hours { get; set; } public virtual bool can_retake { get; set; } public virtual bool is_credit_restricted { get; set; } public virtual bool is_audit_restricted { get; set; } public virtual bool is_oncampus_restricted_for_change { get; set; } public virtual bool is_online_restricted_for_change { get; set; } public virtual bool can_be_provisional { get; set; } public virtual bool can_be_dropped { get; set; } public virtual List ruleMessages { get; set; } } public partial class SectionResponse { public SectionResponse() { instructors = new List{}; required_documents = new List{}; start_times = new List{}; end_times = new List{}; credit_amounts = new List{}; audit_amounts = new List{}; } public virtual ResponseStatus ResponseStatus { get; set; } public virtual string secUUID { get; set; } public virtual string course_name { get; set; } public virtual string section_code { get; set; } public virtual string course_title { get; set; } public virtual string course_short_title { get; set; } public virtual string course_description { get; set; } public virtual string crosslist_description { get; set; } public virtual string crosslist_course_name { get; set; } public virtual string location_long_name { get; set; } public virtual string room { get; set; } public virtual List instructors { get; set; } public virtual List required_documents { get; set; } public virtual DateTime? start_date { get; set; } public virtual DateTime? end_date { get; set; } public virtual DateTime? first_meeting_date { get; set; } public virtual DateTime? last_meeting_date { get; set; } public virtual string meeting_days { get; set; } public virtual List start_times { get; set; } public virtual List end_times { get; set; } public virtual bool is_online_only { get; set; } public virtual bool is_weekend { get; set; } public virtual bool is_weekday { get; set; } public virtual bool is_evening { get; set; } public virtual bool is_waitlist { get; set; } public virtual bool has_special_requirements { get; set; } public virtual string special_requirements { get; set; } public virtual bool is_unlisted { get; set; } public virtual List credit_amounts { get; set; } public virtual List audit_amounts { get; set; } public virtual string audits_short_name { get; set; } public virtual string audits_long_name { get; set; } public virtual string credits_short_name { get; set; } public virtual string credits_long_name { get; set; } public virtual string distance_ed_materials { get; set; } public virtual string prerequisites { get; set; } public virtual string corequisites { get; set; } public virtual int? capacity { get; set; } public virtual decimal? flat_fee_amount { get; set; } public virtual decimal? additional_fee_amount { get; set; } public virtual int registered_students { get; set; } public virtual int three_credit_plus { get; set; } public virtual int two_credit { get; set; } public virtual int one_credit { get; set; } public virtual int three_audit_plus { get; set; } public virtual int two_audit { get; set; } public virtual int one_audit { get; set; } public virtual int crosslist_registered_students { get; set; } public virtual int grades_received { get; set; } public virtual int crosslist_grades_received { get; set; } public virtual DateTime? registration_start_date { get; set; } public virtual DateTime? registration_end_date { get; set; } public virtual DateTime? add_start_date { get; set; } public virtual DateTime? add_end_date { get; set; } public virtual DateTime? drop_start_date { get; set; } public virtual DateTime? drop_end_date { get; set; } public virtual DateTime? grading_end_date { get; set; } public virtual string term { get; set; } public virtual string reporting_term { get; set; } public virtual int reporting_year { get; set; } public virtual string current_status { get; set; } public virtual string added_by { get; set; } public virtual DateTime? added_date { get; set; } public virtual string changed_by { get; set; } public virtual DateTime? changed_date { get; set; } public virtual DateTime timestamp { get; set; } } }