nylas
    Preparing search index...

    Interface Timespan

    Class representation of a time span with start and end times. An hour lunch meeting would be represented as timespan subobjects.

    interface Timespan {
        endTime: number;
        endTimezone?: string;
        object: Timespan;
        startTime: number;
        startTimezone?: string;
    }
    Index

    Properties

    endTime: number

    The end time of the event.

    endTimezone?: string

    The timezone of the end time. Timezone using IANA formatted string. (e.g. "America/New_York")

    object: Timespan

    The type of 'when' object.

    startTime: number

    The start time of the event.

    startTimezone?: string

    The timezone of the start time. Timezone using IANA formatted string. (e.g. "America/New_York")