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