/* Options: Date: 2025-04-04 18:10:38 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.GetAttachmentsForInstanceRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/api/FileAttachment/GetAttachmentsForInstance", "POST,GET") class GetAttachmentsForInstanceRequest implements IReturn>, IConvertible { int? InstanceId; String? InstanceType; GetAttachmentsForInstanceRequest({this.InstanceId,this.InstanceType}); GetAttachmentsForInstanceRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { InstanceId = json['InstanceId']; InstanceType = json['InstanceType']; return this; } Map toJson() => { 'InstanceId': InstanceId, 'InstanceType': InstanceType }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "GetAttachmentsForInstanceRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.clubmanagercentral.com', types: { 'GetAttachmentsForInstanceRequest': TypeInfo(TypeOf.Class, create:() => GetAttachmentsForInstanceRequest()), });