/* Options: Date: 2025-10-28 02:16:37 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://duengageapi.uat.scadsoftware.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CampaignCustomersToIncludeLookup.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } // @Route("/customerstoinclude/{CampaignsId}", "GET") export class CampaignCustomersToIncludeLookup implements IReturn { public CampaignsId: number; public CustomersId: number[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'CampaignCustomersToIncludeLookup'; } public getMethod() { return 'GET'; } public createResponse() { return new Array(); } }