n8n/packages/nodes-base/nodes/Salesforce/LeadInterface.ts

29 lines
573 B
TypeScript
Raw Normal View History

2020-02-10 12:55:28 -08:00
export interface ILead {
// tslint:disable-next-line: no-any
[key: string]: any;
2020-02-10 12:55:28 -08:00
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;
2020-02-10 12:55:28 -08:00
}