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