/* Options: Date: 2025-10-27 22:29:52 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: GetQueryResults.* //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/tables/query/{QueryId}", "GET") class GetQueryResults implements IReturn>, IConvertible, IGet { int? QueryId; Map? ParameterList; Paging? Paging; GetQueryResults({this.QueryId,this.ParameterList,this.Paging}); GetQueryResults.fromJson(Map json) { fromMap(json); } fromMap(Map json) { QueryId = json['QueryId']; ParameterList = JsonConverters.fromJson(json['ParameterList'],'Map',context!); Paging = JsonConverters.fromJson(json['Paging'],'Paging',context!); return this; } Map toJson() => { 'QueryId': QueryId, 'ParameterList': JsonConverters.toJson(ParameterList,'Map',context!), 'Paging': JsonConverters.toJson(Paging,'Paging',context!) }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "GetQueryResults"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: { 'Paging': TypeInfo(TypeOf.Class, create:() => Paging()), 'List': TypeInfo(TypeOf.Class, create:() => []), 'GetQueryResults': TypeInfo(TypeOf.Class, create:() => GetQueryResults()), 'Map': TypeInfo(TypeOf.Class, create:() => Map()), });