salesforce node

This commit is contained in:
Ricardo Espinoza
2020-02-10 15:55:28 -05:00
parent 6e6ece1bcb
commit 2eaeb4f4c2
21 changed files with 6807 additions and 0 deletions

View 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;
}