n8n/packages/nodes-base/nodes/Salesmate/CompanyInterface.ts
Ricardo Espinoza 63c96497be salesmate node
2020-01-20 22:00:27 -05:00

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;
}