mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
✨ salesforce node
This commit is contained in:
26
packages/nodes-base/nodes/Salesforce/LeadInterface.ts
Normal file
26
packages/nodes-base/nodes/Salesforce/LeadInterface.ts
Normal file
@@ -0,0 +1,26 @@
|
||||
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user