/* Options: Date: 2026-09-10 05:46:26 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: RegistrationBillingAuditReportRequest.* //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/billing-audit-reports", "POST")] public partial class RegistrationBillingAuditReportRequest : IReturn { public virtual string reporting_term { get; set; } public virtual DateTime from_date { get; set; } public virtual DateTime to_date { get; set; } public virtual string authorizing_uuid { get; set; } } } namespace regis.ClassLibrary.Responses { public partial class RegistrationBillingAuditReportResponse { public RegistrationBillingAuditReportResponse() { parity = new List{}; completeness = new List{}; failures = new List{}; drift = new List{}; } public virtual List parity { get; set; } public virtual List completeness { get; set; } public virtual List failures { get; set; } public virtual List drift { get; set; } } public partial class RegistrationBillingCompletenessAuditResponse { public virtual int transaction_id { get; set; } public virtual string transaction_uuid { get; set; } public virtual string reporting_term { get; set; } public virtual DateTime finished_datetime { get; set; } public virtual string operation { get; set; } public virtual int regent_id { get; set; } public virtual string student_uuid { get; set; } public virtual string student_name { get; set; } public virtual int invoice_count { get; set; } public virtual decimal invoice_net { get; set; } public virtual decimal item_net { get; set; } public virtual int gp_success_count { get; set; } public virtual int gp_failure_count { get; set; } public virtual string calculation_status { get; set; } public virtual string calculation_findings { get; set; } public virtual string status { get; set; } public virtual string findings { get; set; } public virtual DateTime? resolved_datetime { get; set; } public virtual string resolved_by_uuid { get; set; } } public partial class RegistrationBillingDriftAuditResponse { public RegistrationBillingDriftAuditResponse() { section_course_codes = new Dictionary{}; } public virtual int transaction_id { get; set; } public virtual string reporting_term { get; set; } public virtual int regent_id { get; set; } public virtual string workflow { get; set; } public virtual int calculation_count { get; set; } public virtual DateTime first_calculation { get; set; } public virtual DateTime final_calculation { get; set; } public virtual bool changed { get; set; } public virtual string persistence_status { get; set; } public virtual string persistence_findings { get; set; } public virtual string first_summary_json { get; set; } public virtual string final_summary_json { get; set; } public virtual Dictionary section_course_codes { get; set; } } public partial class RegistrationBillingFailureAuditResponse { public virtual string source { get; set; } public virtual string reporting_term { get; set; } public virtual long id { get; set; } public virtual DateTime timestamp { get; set; } public virtual string workflow { get; set; } public virtual int regent_id { get; set; } public virtual int? transaction_id { get; set; } public virtual string invoice_id { get; set; } public virtual string gp_document_number { get; set; } public virtual decimal? amount { get; set; } public virtual string error { get; set; } } public partial class RegistrationBillingParityAuditResponse { public virtual long execution_id { get; set; } public virtual string reporting_term { get; set; } public virtual DateTime timestamp { get; set; } public virtual string workflow { get; set; } public virtual string execution_mode { get; set; } public virtual int regent_id { get; set; } public virtual int? transaction_id { get; set; } public virtual bool matches { get; set; } public virtual bool? legacy_succeeded { get; set; } public virtual bool? composed_succeeded { get; set; } public virtual string differences { get; set; } public virtual string request_summary_json { get; set; } public virtual string legacy_summary_json { get; set; } public virtual string composed_summary_json { get; set; } } }