/* Options: Date: 2025-05-04 22:23:24 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetFileInfo.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* /** * Get the specified file's URI */ @Route(Path="/app/file/{fileId}", Verbs="GET") @Api(Description="Get the specified file's URI") open class GetFileInfo : IReturn, IPost { /** * The ID of the file */ @ApiMember(Description="The ID of the file") open var fileId:String? = null companion object { private val responseType = GetFileInfoResponse::class.java } override fun getResponseType(): Any? = GetFileInfo.responseType } open class GetFileInfoResponse { open var uri:String? = null }