mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
23 lines
491 B
TypeScript
23 lines
491 B
TypeScript
export interface ICompany {
|
|
name?: string;
|
|
owner?: number;
|
|
website?: string;
|
|
phone?: string;
|
|
otherPhone?: string;
|
|
googlePlusHandle?: string;
|
|
linkedInHandle?: string;
|
|
facebookHandle?: string;
|
|
linkedinHandle?: string;
|
|
skypeId?: string;
|
|
twitterHandle?: string;
|
|
currency?: string;
|
|
billingAddressLine1?: string;
|
|
billingAddressLine2?: string;
|
|
billingCity?: string;
|
|
billingZipCode?: string;
|
|
billingCountry?: string;
|
|
billingState?: string;
|
|
description?: string;
|
|
tags?: string;
|
|
}
|