flexbase-client
Version:
Flexbase api client
18 lines (17 loc) • 465 B
TypeScript
import { Address } from '../Address/Address.js';
import { Phone } from '../Phone/Phone.js';
import { BusinessOwner } from './BusinessOwner.js';
export interface Business {
id: string;
businessName: string;
doingBusinessAs?: string;
taxId: string;
legalStructure: string;
category: string;
monthlyExpenditure: string;
formationDate: string;
website?: string;
owners: BusinessOwner[];
address: Address;
phone: Phone;
}