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