/* Options: Date: 2025-07-04 02:35:19 Version: 5.140 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.clubmanagercentral.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: FileAttachmentService.DeleteFileRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/api/FileAttachment/DeleteFile", "POST,GET") class DeleteFileRequest implements IReturnVoid, IConvertible { int? FileAttachmentId; DeleteFileRequest({this.FileAttachmentId}); DeleteFileRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { FileAttachmentId = json['FileAttachmentId']; return this; } Map toJson() => { 'FileAttachmentId': FileAttachmentId }; createResponse() {} getTypeName() => "DeleteFileRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.clubmanagercentral.com', types: { 'DeleteFileRequest': TypeInfo(TypeOf.Class, create:() => DeleteFileRequest()), });