Files
Agent-n8n/n8n-n8n-1.109.2/packages/nodes-base/nodes/Segment/IdentifyInterface.ts
2025-09-08 04:48:28 +08:00

11 lines
219 B
TypeScript
Executable File

import type { IDataObject } from 'n8n-workflow';
export interface IIdentify {
userId?: string;
anonymousId?: string;
traits?: IDataObject;
context?: IDataObject;
integrations?: IDataObject;
timestamp?: string;
}