/* Options: Date: 2025-10-28 00:55:44 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: ConfigurationChannelsLookup.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:collection */ import 'package:servicestack/servicestack.dart'; import 'dart:collection'; // @Route("/configuration_channels", "GET") // @DataContract class ConfigurationChannelsLookup implements IReturn>, IConvertible, IGet { // @DataMember(Order=2) int? ConfigurationsId; // @DataMember(Order=3) int? ChannelsId; // @DataMember(Order=4) int? TemplatesId; ConfigurationChannelsLookup({this.ConfigurationsId,this.ChannelsId,this.TemplatesId}); ConfigurationChannelsLookup.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ConfigurationsId = json['ConfigurationsId']; ChannelsId = json['ChannelsId']; TemplatesId = json['TemplatesId']; return this; } Map toJson() => { 'ConfigurationsId': ConfigurationsId, 'ChannelsId': ChannelsId, 'TemplatesId': TemplatesId }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "ConfigurationChannelsLookup"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: { 'List': TypeInfo(TypeOf.Class, create:() => []), 'ConfigurationChannelsLookupResponse': TypeInfo(TypeOf.Class, create:() => ConfigurationChannelsLookupResponse()), 'ConfigurationChannelsLookup': TypeInfo(TypeOf.Class, create:() => ConfigurationChannelsLookup()), });