zibri
    Preparing search index...

    Contains base information about a company.

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

    Properties

    address: {
        city: string;
        countryId: string;
        number: string;
        postcode: string;
        street: string;
    }

    The address of the company.

    Type Declaration

    • 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.

    bic?: string

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

    ceo?: string

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

    email: string

    The email of the company.

    fullName: string

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

    iban?: string

    The IBAN of the company. Can be omitted.

    name: string

    The name of the company.

    phone: string

    The phone number of the company.

    taxNumber?: string

    The tax number.

    vatNumber?: string

    The vat number.