n8n/packages/nodes-base/nodes/Segment/IdentifyInterface.ts

11 lines
214 B
TypeScript
Raw Normal View History

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;
}