nylas
    Preparing search index...

    Interface SpecificTimeAvailability

    Interface of a participant's availability for a specific date and time range. This can override the open_hours configurations for the specified date.

    interface SpecificTimeAvailability {
        date: string;
        end: string;
        start: string;
        timezone?: string;
    }
    Index

    Properties

    Properties

    date: string

    The specific date in YYYY-MM-DD format.

    end: string

    End time in 24-hour time format. Leading 0's are left off (e.g. "17:00").

    start: string

    Start time in 24-hour time format. Leading 0's are left off (e.g. "9:00").

    timezone?: string

    IANA time zone database formatted string (e.g. America/Toronto).