nylas
    Preparing search index...

    Interface ConfigParticipant

    Interface representing a booking participant.

    interface ConfigParticipant {
        availability: ParticipantAvailability;
        booking: ParticipantBooking;
        email: string;
        isOrganizer?: boolean;
        name?: string;
        timezone?: string;
    }
    Index

    Properties

    The availability data for the participant. If omitted, the participant is considered to be available at all times. At least one participant must have availability data.

    The booking data for the participant. If omitted, the participant is not included in the booked event. At least one participant must have booking data.

    email: string

    Participant's email address.

    isOrganizer?: boolean

    Whether the participant is the organizer of the event. For non-round-robin meetings, one of the participants must be specified as an organizer.

    name?: string

    Participant's name.

    timezone?: string

    The participant's timezone. This is used when calculating the participant's open hours and in email notifications.