7.1.0

interface CalendarEvent {
    alerts: number[];
    attendees: {
        email: null | string;
        name: null | string;
        role: null | AttendeeRole;
        status: null | AttendeeStatus;
        type: null | AttendeeType;
    }[];
    availability: null | EventAvailability;
    birthdayContactIdentifier: null | string;
    calendarId: null | string;
    color: null | string;
    creationDate: null | number;
    description: null | string;
    duration: null | string;
    endDate: number;
    id: string;
    isAllDay: boolean;
    isDetached: null | boolean;
    lastModifiedDate: null | number;
    location: null | string;
    organizer: null | string;
    startDate: number;
    status: null | EventStatus;
    timezone: null | string;
    title: string;
    url: null | string;
}

Properties

alerts: number[]

Android, iOS

7.1.0

attendees: {
    email: null | string;
    name: null | string;
    role: null | AttendeeRole;
    status: null | AttendeeStatus;
    type: null | AttendeeType;
}[]

Type declaration

  • email: null | string

    Android

    7.1.0

  • name: null | string

    Android, iOS

    7.1.0

  • role: null | AttendeeRole

    Equivalent to ATTENDEE_RELATIONSHIP on Android. Equivalent to EKParticipantRole on iOS.

    Android, iOS

    7.1.0

  • status: null | AttendeeStatus

    Equivalent to ATTENDEE_STATUS on Android. Equivalent to EKParticipantStatus on iOS.

    Android, iOS

    7.1.0

  • type: null | AttendeeType

    Equivalent to ATTENDEE_TYPE on Android. Equivalent to EKParticipantType on iOS.

    Android, iOS

    7.1.0

Android, iOS

7.1.0

availability: null | EventAvailability

Android, iOS

7.1.0

birthdayContactIdentifier: null | string
calendarId: null | string

Android, iOS

7.1.0

color: null | string

Android, iOS

7.1.0

creationDate: null | number

iOS

7.1.0

description: null | string

Android, iOS

7.1.0

duration: null | string

Android

7.1.0

endDate: number

Android, iOS

7.1.0

id: string

Android, iOS

7.1.0

isAllDay: boolean

Android, iOS

7.1.0

isDetached: null | boolean

iOS

7.1.0

lastModifiedDate: null | number

iOS

7.1.0

location: null | string

Android, iOS

7.1.0

organizer: null | string

Android, iOS

7.1.0

startDate: number

Android, iOS

7.1.0

status: null | EventStatus

Android, iOS

7.1.0

timezone: null | string

Android, iOS

7.1.0

title: string

Android, iOS

7.1.0

url: null | string

iOS

7.1.0