/* Options: Date: 2025-05-04 22:56:12 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: AppDeleteFile.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/portal/files/{fileId}", "DELETE") class AppDeleteFile implements IReturnVoid, IConvertible, IDelete { String? accountId; String? customerId; String? fileId; AppDeleteFile({this.accountId,this.customerId,this.fileId}); AppDeleteFile.fromJson(Map json) { fromMap(json); } fromMap(Map json) { accountId = json['accountId']; customerId = json['customerId']; fileId = json['fileId']; return this; } Map toJson() => { 'accountId': accountId, 'customerId': customerId, 'fileId': fileId }; createResponse() {} getTypeName() => "AppDeleteFile"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'team.evovoice.io', types: { 'AppDeleteFile': TypeInfo(TypeOf.Class, create:() => AppDeleteFile()), });