/* Options: Date: 2025-05-04 22:57:57 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteFile.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; /** * Delete the specified file */ // @Route("/files/{fileId}", "DELETE") // @Api(Description="Delete the specified file") class DeleteFile implements IReturnVoid, IDelete, IConvertible { /** * The ID of the file to delete */ // @ApiMember(Description="The ID of the file to delete") String? fileId; DeleteFile({this.fileId}); DeleteFile.fromJson(Map json) { fromMap(json); } fromMap(Map json) { fileId = json['fileId']; return this; } Map toJson() => { 'fileId': fileId }; createResponse() {} getTypeName() => "DeleteFile"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'team.evovoice.io', types: { 'DeleteFile': TypeInfo(TypeOf.Class, create:() => DeleteFile()), });