Interface AddPersonInput

The AddPersonInput used by the constructor of AddPerson

interface AddPersonInput {
    email?: string;
    personId?: string;
}

Properties

Properties

email?: string

email of the person, if not provided personId is required.

personId?: string

Bambu person identifier, if not provided email is required.