/* Options: Date: 2025-10-27 21:37:03 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://duengageapi.uat.scadsoftware.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: InvoiceFilesLookup.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/invoice_files", "GET") // @DataContract class InvoiceFilesLookup implements IReturn>, IConvertible, IGet { // @DataMember(Order=2) int? TenantsId; // @DataMember(Order=3) int? DebtsId; // @DataMember(Order=4) String? InvoiceUrl; InvoiceFilesLookup({this.TenantsId,this.DebtsId,this.InvoiceUrl}); InvoiceFilesLookup.fromJson(Map json) { fromMap(json); } fromMap(Map json) { TenantsId = json['TenantsId']; DebtsId = json['DebtsId']; InvoiceUrl = json['InvoiceUrl']; return this; } Map toJson() => { 'TenantsId': TenantsId, 'DebtsId': DebtsId, 'InvoiceUrl': InvoiceUrl }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "InvoiceFilesLookup"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: { 'List': TypeInfo(TypeOf.Class, create:() => []), 'InvoiceFilesLookupResponse': TypeInfo(TypeOf.Class, create:() => InvoiceFilesLookupResponse()), 'InvoiceFilesLookup': TypeInfo(TypeOf.Class, create:() => InvoiceFilesLookup()), });