mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
11 lines
214 B
TypeScript
11 lines
214 B
TypeScript
import { IDataObject } from 'n8n-workflow';
|
|
|
|
export interface IIdentify {
|
|
userId?: string;
|
|
anonymousId?: string;
|
|
traits?: IDataObject;
|
|
context?: IDataObject;
|
|
integrations?: IDataObject;
|
|
timestamp?: string;
|
|
}
|