/* Options: Date: 2024-12-29 02:30:57 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: UnauthenticatedRegistrationInProgressSummaryRequest.* //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("/Registration/InProgressSummaryForUnauthenticatedPerson/{uuid}/Term/{reporting_term}/{transaction_uuid}", "POST")] public partial class UnauthenticatedRegistrationInProgressSummaryRequest : IReturn { public virtual string uuid { get; set; } public virtual string transaction_uuid { get; set; } public virtual string reporting_term { get; set; } public virtual bool audio_only { get; set; } } } namespace regis.ClassLibrary.Responses { public partial class RegistrationDocumentResponse { public virtual string uuid { get; set; } public virtual int regent_id { get; set; } public virtual string first_name { get; set; } public virtual string last_name { get; set; } public virtual string gender { get; set; } public virtual string email { get; set; } public virtual string program { get; set; } public virtual string concentration { get; set; } public virtual string section_uuid { get; set; } public virtual string course_name { get; set; } public virtual string course_title { get; set; } public virtual string reporting_term { get; set; } public virtual string document_code { get; set; } public virtual string document_json { get; set; } public virtual string document_name { get; set; } public virtual string document_description { get; set; } public virtual DateTime? added_date { get; set; } public virtual DateTime? changed_date { get; set; } } public partial class RegistrationInProgressSummaryResponse { public RegistrationInProgressSummaryResponse() { requiredDocuments = new List{}; completedDocuments = new List{}; } public virtual ResponseStatus ResponseStatus { get; set; } public virtual string transaction_uuid { get; set; } public virtual int regent_id { get; set; } public virtual string uuid { get; set; } public virtual string reporting_term { get; set; } public virtual int numberOfStudentSections { get; set; } public virtual decimal amountOwing { get; set; } public virtual bool mustPayBeforeRegistering { get; set; } public virtual List requiredDocuments { get; set; } public virtual List completedDocuments { get; set; } public virtual bool isLate { get; set; } } } namespace ServiceStack { [DataContract] public partial class ResponseStatus : IMeta { public ResponseStatus() { Errors = new List{}; Meta = new Dictionary{}; } [DataMember(Order=1)] public virtual string ErrorCode { get; set; } [DataMember(Order=2)] public virtual string Message { get; set; } [DataMember(Order=3)] public virtual string StackTrace { get; set; } [DataMember(Order=4)] public virtual List Errors { get; set; } [DataMember(Order=5)] public virtual Dictionary Meta { get; set; } } }