This commit is contained in:
Ricardo Espinoza
2019-11-21 12:39:04 -05:00
parent 503baf82f7
commit 1b111d4aba
8 changed files with 1593 additions and 12 deletions

View File

@@ -0,0 +1,13 @@
import { IDataObject } from "n8n-workflow";
export interface ICompany {
remote_created_at?: string;
company_id?: string;
name?: string;
monthly_spend?: number;
plan?: string;
size?: number;
website?: string;
industry?: string;
custom_attributes?: IDataObject;
}