/* Options: Date: 2025-05-04 20:31:14 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: DeleteFile.* //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.* /** * Delete the specified file */ @Route(Path="/files/{fileId}", Verbs="DELETE") @Api(Description="Delete the specified file") open class DeleteFile : IReturnVoid, IDelete { /** * The ID of the file to delete */ @ApiMember(Description="The ID of the file to delete") open var fileId:String? = null }