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

31 lines
610 B
TypeScript

export interface ILead {
[key: string]: any;
Company?: string;
LastName?: string;
Email?: string;
Fax?: number;
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;
HasOptedOutOfEmail?: boolean;
HasOptedOutOfFax?: boolean;
}