/** * Customer.io Node - Version 1 * Discriminator: resource=segment, operation=add */ interface Credentials { customerIoApi: CredentialReference; } export type CustomerIoV1SegmentAddParams = { resource: 'segment'; operation: 'add'; /** * The unique identifier of the segment * @default 0 */ segmentId?: number | Expression; /** * A list of customer IDs to add to the segment */ customerIds?: string | Expression | PlaceholderValue; }; export type CustomerIoV1SegmentAddNode = { type: 'n8n-nodes-base.customerIo'; version: 1; credentials?: Credentials; config: NodeConfig; };