Type alias Company

Company: {
    accountId: string;
    address: string;
    city: string;
    contactInfo: CompanyContactInfo[];
    country: string;
    id: string;
    invoices: Invoice[];
    logoURL: string;
    name: string;
    state: string;
    taxRegistrations: string[];
}

Type declaration

  • accountId: string

    Account ID to which the company belongs

  • address: string

    Registered postal address of the company

  • city: string

    City in which the company exists

  • contactInfo: CompanyContactInfo[]

    Contact details of the company

  • country: string

    Country in which the company exists

  • id: string

    ID of the company

  • invoices: Invoice[]

    List of invoices generated for the company

  • logoURL: string

    URL of company logo

  • name: string

    Name of the company

  • state: string

    State in which the company exists

  • taxRegistrations: string[]

    Company tax registration information