nylas
    Preparing search index...

    Interface EventBooking

    interface EventBooking {
        bookingType?: BookingType;
        conferencing?: Conferencing;
        description?: string;
        disableEmails?: boolean;
        location?: string;
        reminders?: BookingReminder[];
        timezone?: string;
        title: string;
    }
    Index

    Properties

    bookingType?: BookingType

    The type of booking. If set to booking, Scheduler follows the standard booking flow and instantly creates the event. If set to organizer-confirmation, Scheduler creates an event marked "Pending" in the organizer's calendar and sends an confirmation request email to the organizer. The confirmation request email includes a link to a page where the organizer can confirm or cancel the booking.

    conferencing?: Conferencing

    An object that allows you to automatically create a conference or enter conferencing details manually.

    description?: string

    The description of the event.

    disableEmails?: boolean

    If true, Nylas doesn't send any email messages when an event is booked, cancelled, or rescheduled.

    location?: string

    The location of the event.

    reminders?: BookingReminder[]

    The list of reminders to send to participants before the event starts.

    timezone?: string

    The timezone for displaying the times in confirmation email messages and reminders.

    title: string

    The title of the event.