mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
cfd32d2642
* 🔥 Remove TSLint scripts * 🔥 Remove TSLint config * 🔥 Remove TSLint exceptions * 👕 Adjust lint config * ✏️ Add story numbers
28 lines
535 B
TypeScript
28 lines
535 B
TypeScript
export interface ILead {
|
|
[key: string]: any;
|
|
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;
|
|
MobilePhone?: string;
|
|
}
|