/* Options: Date: 2025-10-27 22:20:47 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: GetTablesForCatalog.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:collection */ import 'package:servicestack/servicestack.dart'; import 'dart:collection'; class Paging implements IConvertible { int? PageNumber; int? PageSize; Paging({this.PageNumber,this.PageSize}); Paging.fromJson(Map json) { fromMap(json); } fromMap(Map json) { PageNumber = json['PageNumber']; PageSize = json['PageSize']; return this; } Map toJson() => { 'PageNumber': PageNumber, 'PageSize': PageSize }; getTypeName() => "Paging"; TypeContext? context = _ctx; } // @Route("/scadmeta/catalog/{TableCatalog}", "GET") class GetTablesForCatalog implements IReturn>, IConvertible, IGet { String? TableCatalog; Paging? Paging; GetTablesForCatalog({this.TableCatalog,this.Paging}); GetTablesForCatalog.fromJson(Map json) { fromMap(json); } fromMap(Map json) { TableCatalog = json['TableCatalog']; Paging = JsonConverters.fromJson(json['Paging'],'Paging',context!); return this; } Map toJson() => { 'TableCatalog': TableCatalog, 'Paging': JsonConverters.toJson(Paging,'Paging',context!) }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "GetTablesForCatalog"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: { 'Paging': TypeInfo(TypeOf.Class, create:() => Paging()), 'List': TypeInfo(TypeOf.Class, create:() => []), 'GetTablesForCatalog': TypeInfo(TypeOf.Class, create:() => GetTablesForCatalog()), });