n8n/packages/nodes-base/nodes/Drift/ContactInterface.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
98 B
TypeScript
Raw Normal View History

2020-02-28 16:55:14 -08:00
export interface IContact {
email?: string;
name?: string;
phone?: string;
tags?: string[];
}