mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
26 lines
491 B
TypeScript
26 lines
491 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;
|
||
|
}
|