Added lead resource

This commit is contained in:
Ricardo Espinoza
2020-02-15 19:23:22 -05:00
parent 24670cb7ee
commit c630028531
5 changed files with 984 additions and 65 deletions

View File

@@ -0,0 +1,37 @@
export interface ILead {
Annual_Revenue?: number;
City?: string;
Company?: string;
Country?: string;
Description?: string;
Designation?: string;
Email?: string;
Email_Opt_Out?: boolean;
Fax?: string;
First_Name?: string;
Industry?: string;
Is_Record_Duplicate?: boolean;
Last_Name?: string;
Lead_Owner?: string;
Lead_Source?: string;
Lead_Status?: string;
Mobile?: string;
No_of_Employees?: number;
Phone?: string;
Salutation?: string;
Secondary_Email?: string;
Skype_ID?: string;
State?: string;
Street?: string;
Twitter?: string;
Website?: string;
Zip_Code?: string;
}
export interface IAddress {
street?: string;
city?: string;
state?: string;
country?: string;
zipCode?: string;
}