n8n/packages/nodes-base/nodes/Salesforce/LeadInterface.ts
Michael Kret 91d7e16c81
n8n-3867-progressively-apply-prettier-to-all (#3873)
* 🔨 formatting nodes with prettier
2022-08-17 17:50:24 +02:00

29 lines
572 B
TypeScript

export interface ILead {
// tslint:disable-next-line: no-any
[key: string]: any;
Company?: string;
LastName?: string;
Email?: string;
City?: string;
Phone?: string;
State?: string;
Title?: string;
Jigsaw?: string;
Rating?: string;
Status?: string;
Street?: string;
Country?: string;
OwnerId?: string;
Website?: string;
Industry?: string;
FirstName?: string;
LeadSource?: string;
PostalCode?: string;
Salutation?: string;
Description?: string;
AnnualRevenue?: number;
IsUnreadByOwner?: boolean;
NumberOfEmployees?: number;
MobilePhone?: string;
}