Files
n8n_Demo/n8n-n8n-1.109.2/packages/nodes-base/nodes/Segment/IdentifyInterface.ts

11 lines
219 B
TypeScript
Raw Normal View History

2025-09-08 04:48:28 +08:00
import type { IDataObject } from 'n8n-workflow';
export interface IIdentify {
userId?: string;
anonymousId?: string;
traits?: IDataObject;
context?: IDataObject;
integrations?: IDataObject;
timestamp?: string;
}