CompanyInfo: {
    address: {
        city: string;
        countryId: string;
        number: string;
        postcode: string;
        street: string;
    };
    bic?: string;
    ceo?: string;
    email: string;
    fullName: string;
    iban?: string;
    name: string;
    phone: string;
    taxNumber?: string;
    vatNumber?: string;
}

Contains base information about a company.

Type declaration

  • Readonlyaddress: {
        city: string;
        countryId: string;
        number: string;
        postcode: string;
        street: string;
    }

    The address of the company.

    • Readonlycity: string

      The city of the address.

    • ReadonlycountryId: string

      The ISO 3166-1 country id.

    • Readonlynumber: string

      The number of the address.

    • Readonlypostcode: string

      The 5 digit postcode of the address.

    • Readonlystreet: string

      The street of the address.

  • Optional Readonlybic?: string

    The BIC/SWIFT of the company. Can be omitted.

  • Optional Readonlyceo?: string

    The ceo of the company to display in the footer. Can be omitted.

  • Readonlyemail: string

    The email of the company.

  • ReadonlyfullName: string

    The full name of the company, including the company addendum.

  • Optional Readonlyiban?: string

    The IBAN of the company. Can be omitted.

  • Readonlyname: string

    The name of the company.

  • Readonlyphone: string

    The phone number of the company.

  • Optional ReadonlytaxNumber?: string

    The tax number.

  • Optional ReadonlyvatNumber?: string

    The vat number.