/* Options: Date: 2025-10-28 04:36:07 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: CampaignCustomersToIncludeLookup.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:collection */ import 'package:servicestack/servicestack.dart'; import 'dart:collection'; // @Route("/customerstoinclude/{CampaignsId}", "GET") class CampaignCustomersToIncludeLookup implements IReturn>, IConvertible, IGet { int? CampaignsId; List? CustomersId; CampaignCustomersToIncludeLookup({this.CampaignsId,this.CustomersId}); CampaignCustomersToIncludeLookup.fromJson(Map json) { fromMap(json); } fromMap(Map json) { CampaignsId = json['CampaignsId']; CustomersId = JsonConverters.fromJson(json['CustomersId'],'List',context!); return this; } Map toJson() => { 'CampaignsId': CampaignsId, 'CustomersId': JsonConverters.toJson(CustomersId,'List',context!) }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "CampaignCustomersToIncludeLookup"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: { 'List': TypeInfo(TypeOf.Class, create:() => []), 'CustomersView': TypeInfo(TypeOf.Class, create:() => CustomersView()), 'CampaignCustomersToIncludeLookup': TypeInfo(TypeOf.Class, create:() => CampaignCustomersToIncludeLookup()), });