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

11 lines
214 B
TypeScript
Raw Normal View History

2020-01-23 09:27:28 -08:00
import { IDataObject } from "n8n-workflow";
export interface IIdentify {
userId?: string;
anonymousId?: string;
traits?: IDataObject;
context?: IDataObject;
integrations?: IDataObject;
timestamp?: string;
}