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