1
0
Fork 0
mirror of https://github.com/n8n-io/n8n.git synced 2025-03-05 20:50:17 -08:00
n8n/packages/nodes-base/nodes/Segment/IdentifyInterface.ts
Jan Oberhauser 785b0e385e 👕 Fix lint issue
2021-01-13 20:20:30 +01:00

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