(* Options: Date: 2024-12-29 03:25:08 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://data.regent-college.edu //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: FinancialAidApplicationFileRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace regis.ClassLibrary.Requests open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] [] type ResponseStatus() = [] member val ErrorCode:String = null with get,set [] member val Message:String = null with get,set [] member val StackTrace:String = null with get,set [] member val Errors:ResizeArray = new ResizeArray() with get,set [] member val Meta:Dictionary = new Dictionary() with get,set [] type FileSimpleResponse() = member val ResponseStatus:ResponseStatus = null with get,set member val uuid:String = null with get,set member val name:String = null with get,set member val extension:String = null with get,set member val size:Int64 = new Int64() with get,set [] type FileResponse() = inherit FileSimpleResponse() member val type:String = null with get,set member val content:Byte[] = [||] with get,set [] [] type FinancialAidApplicationFileRequest() = interface IReturn member val application_uuid:String = null with get,set member val file_uuid:String = null with get,set