nylas
    Preparing search index...

    Interface OpenHours

    Interface of a participant's open hours.

    interface OpenHours {
        days: number[];
        end: string;
        exdates: string[];
        start: string;
        timezone: string;
    }
    Index

    Properties

    days: number[]

    The days of the week that the open hour settings will be applied to. Sunday corresponds to 0 and Saturday corresponds to 6.

    end: string

    End time in 24-hour time format. Leading 0's are left off.

    exdates: string[]

    A list of dates that will be excluded from the open hours. Dates should be formatted as YYYY-MM-DD.

    start: string

    Start time in 24-hour time format. Leading 0's are left off.

    timezone: string

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