mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
30 lines
653 B
TypeScript
30 lines
653 B
TypeScript
export interface IAccount {
|
|
// tslint:disable-next-line: no-any
|
|
[key: string]: any;
|
|
Name?: string;
|
|
Fax?: string;
|
|
Type?: string;
|
|
Phone?: string;
|
|
Jigsaw?: string;
|
|
OwnerId?: string;
|
|
SicDesc?: string;
|
|
Website?: string;
|
|
Industry?: string;
|
|
ParentId?: string;
|
|
BillingCity?: string;
|
|
Description?: string;
|
|
BillingState?: string;
|
|
ShippingStreet?: string;
|
|
ShippingCity?: string;
|
|
AccountNumber?: string;
|
|
AccountSource?: string;
|
|
AnnualRevenue?: number;
|
|
BillingStreet?: string;
|
|
ShippingState?: string;
|
|
BillingCountry?: string;
|
|
ShippingCountry?: string;
|
|
BillingPostalCode?: string;
|
|
NumberOfEmployees?: string;
|
|
ShippingPostalCode?: string;
|
|
}
|