/* Options: Date: 2025-10-27 21:36:51 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: SegmentsLookup.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/segments", "GET") // @DataContract class SegmentsLookup implements IReturn>, IConvertible, IGet { // @DataMember(Order=2) int? TenantsId; // @DataMember(Order=3) String? Name; // @DataMember(Order=4) bool? IsCustom; SegmentsLookup({this.TenantsId,this.Name,this.IsCustom}); SegmentsLookup.fromJson(Map json) { fromMap(json); } fromMap(Map json) { TenantsId = json['TenantsId']; Name = json['Name']; IsCustom = json['IsCustom']; return this; } Map toJson() => { 'TenantsId': TenantsId, 'Name': Name, 'IsCustom': IsCustom }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "SegmentsLookup"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: { 'List': TypeInfo(TypeOf.Class, create:() => []), 'SegmentsLookupResponse': TypeInfo(TypeOf.Class, create:() => SegmentsLookupResponse()), 'SegmentsLookup': TypeInfo(TypeOf.Class, create:() => SegmentsLookup()), });