/* Options: Date: 2025-05-04 22:27:00 SwiftVersion: 6.0 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: DeleteFile.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Delete the specified file */ // @Route("/files/{fileId}", "DELETE") // @Api(Description="Delete the specified file") public class DeleteFile : IReturnVoid, IDelete, Codable { /** * The ID of the file to delete */ // @ApiMember(Description="The ID of the file to delete") public var fileId:String? required public init(){} }