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