/* Options: Date: 2024-10-06 10:28:57 SwiftVersion: 5.0 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://data.regent-college.edu //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: SectionRefundScheduleRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/Sections/{reporting_term}/RefundSchedule/{section_refund_uuid}", "POST") public class SectionRefundScheduleRequest : IReturn, Codable { public typealias Return = SectionRefundScheduleResponse public var reporting_term:String public var section_refund_uuid:String required public init(){} } public class SectionRefundScheduleResponse : Codable { public var responseStatus:ResponseStatus public var uuid:String public var secUUID:String public var section_id:Int public var course_name:String public var section_code:String public var title:String public var reporting_term:String public var rate_code:String public var rate_description:String public var percentage:Double public var start_date:Date public var end_date:Date required public init(){} }