/* Options: Date: 2025-05-05 00:25:29 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ListCrmCustomers.* //ExcludeTypes: //DefaultImports: */ export class NodeParameterMap { [key:string] : NodeParameter; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export interface IReturn { createResponse(): T; } export class CrmCustomerInfo { public id: string; public displayName: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class ListCrmCustomersResponse { public customers: CrmCustomerInfo[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/integrations/{integrationId}/customers") export class ListCrmCustomers implements IReturn { public integrationId: string; public query: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ListCrmCustomers'; } public getMethod() { return 'GET'; } public createResponse() { return new ListCrmCustomersResponse(); } }