/* Options: Date: 2024-12-29 02:48:39 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://data.regent-college.edu //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: FinancialAidApplicationFileRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.* import java.util.* import net.servicestack.client.* import com.google.gson.annotations.* import com.google.gson.reflect.* @Route(Path="/Finance/FinancialAid/Application/{application_uuid}/{file_uuid}", Verbs="POST") open class FinancialAidApplicationFileRequest : IReturn { var application_uuid:String? = null var file_uuid:String? = null companion object { private val responseType = FileResponse::class.java } override fun getResponseType(): Any? = FinancialAidApplicationFileRequest.responseType } open class FileResponse : FileSimpleResponse() { @SerializedName("type") var Type:String? = null var content:ByteArray? = null } open class FileSimpleResponse { var responseStatus:ResponseStatus? = null var uuid:String? = null var name:String? = null var extension:String? = null var size:Long? = null }