2021-01-13 11:20:30 -08:00
|
|
|
import { IDataObject } from 'n8n-workflow';
|
2020-01-23 09:27:28 -08:00
|
|
|
|
|
|
|
export interface IIdentify {
|
|
|
|
userId?: string;
|
|
|
|
anonymousId?: string;
|
|
|
|
traits?: IDataObject;
|
|
|
|
context?: IDataObject;
|
|
|
|
integrations?: IDataObject;
|
|
|
|
timestamp?: string;
|
|
|
|
}
|