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

28 lines
484 B
TypeScript
Raw Normal View History

2020-04-30 05:03:36 -07:00
import {
IDataObject,
} from 'n8n-workflow';
export interface IProperty {
type: string;
name: string;
subtype?: string;
value?: string;
}
export interface IContact {
2020-05-06 01:27:01 -07:00
type?: string;
2020-04-30 05:03:36 -07:00
star_value?: string;
lead_score?: string;
tags?: string[];
properties?: IDataObject[];
}
2020-05-05 02:08:30 -07:00
export interface IContactUpdate {
2020-05-06 01:27:01 -07:00
id: string;
properties?: IDataObject[];
2020-05-05 02:08:30 -07:00
star_value?: string;
lead_score?: string;
tags?: string[];
}