n8n/packages/nodes-base/nodes/Salesforce/LeadInterface.ts
Ricardo Espinoza 2eaeb4f4c2 salesforce node
2020-02-10 15:55:28 -05:00

27 lines
492 B
TypeScript

export interface ILead {
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;
}