/* Options: Date: 2024-10-06 10:26:41 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: DropRegistrationsRequest.* //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/{uuid}/Drop/{reporting_term}", "POST")] public partial class DropRegistrationsRequest : IReturn { public DropRegistrationsRequest() { registrations = new List{}; } public virtual string uuid { get; set; } public virtual string reporting_term { get; set; } public virtual List registrations { get; set; } public virtual DateTime? override_drop_date { get; set; } public virtual string authorizing_uuid { get; set; } } } namespace regis.ClassLibrary.Responses { public partial class DropRegistrationResponse { public virtual string student_section_uuid { get; set; } public virtual string course_name { get; set; } public virtual string section_code { get; set; } public virtual string title { get; set; } public virtual string term { get; set; } public virtual decimal amount { get; set; } public virtual bool is_audit { get; set; } public virtual bool is_grade_final { get; set; } public virtual bool is_provisional { get; set; } public virtual bool is_selected_to_drop { get; set; } public virtual decimal suggested_refund_percentage { get; set; } public virtual decimal suggested_refund_amount { get; set; } public virtual decimal balance_amount { get; set; } public virtual decimal charge_amount { get; set; } public virtual decimal credit_amount { get; set; } public virtual string description { get; set; } public virtual string additional_rate_description { get; set; } public virtual int? additional_rate_id { get; set; } public virtual decimal? additional_rate_amount { get; set; } public virtual decimal? additional_rate_suggested_refund_percentage { get; set; } public virtual decimal? additional_rate_suggested_refund_amount { get; set; } public virtual string benefit_description { get; set; } public virtual string second_benefit_description { get; set; } public virtual int? benefit_rate_id { get; set; } public virtual decimal? benefit_amount { get; set; } public virtual decimal? second_benefit_amount { get; set; } public virtual int? second_benefit_rate_id { get; set; } } public partial class DropRegistrationsResponse { public DropRegistrationsResponse() { messages = new List{}; registrations = new List{}; invoiceItemBalances = 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 decimal suggested_drop_fee { get; set; } public virtual bool suggested_full_student_fee_refund { get; set; } public virtual List messages { get; set; } public virtual List registrations { get; set; } public virtual List invoiceItemBalances { get; set; } } public partial class InvoiceItemBalanceResponse { public virtual ResponseStatus ResponseStatus { get; set; } public virtual int rate_id { get; set; } public virtual string rate_code { get; set; } public virtual string rate_description { get; set; } public virtual decimal balance_amount { get; set; } public virtual decimal charge_amount { get; set; } public virtual decimal credit_amount { 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; } } }