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/Affinity/PersonInterface.ts

8 lines
123 B
TypeScript
Raw Normal View History

2020-02-25 11:50:42 -08:00
export interface IPerson {
first_name?: string;
last_name?: string;
emails?: string[];
organization_ids?: number[];
}