/* Options: Date: 2025-10-27 21:37:06 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: GetCustomerProviderDocuments.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/customers/providers/documents/{TenantsId}", "GET") class GetCustomerProviderDocuments implements IReturn>, IConvertible, IGet { int? TenantsId; GetCustomerProviderDocuments({this.TenantsId}); GetCustomerProviderDocuments.fromJson(Map json) { fromMap(json); } fromMap(Map json) { TenantsId = json['TenantsId']; return this; } Map toJson() => { 'TenantsId': TenantsId }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "GetCustomerProviderDocuments"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: { 'List': TypeInfo(TypeOf.Class, create:() => []), 'GetCustomerProviderDocuments': TypeInfo(TypeOf.Class, create:() => GetCustomerProviderDocuments()), });