Meeting
public struct Meeting
The struct of a calendar meeting
Since
3.2.0-
The identifier of the meeting
Declaration
Swift
public private(set) var meetingId: String { get }
-
The series to which the meeting belongs to
Declaration
Swift
public private(set) var seriesId: String { get }
-
The organizer id of the meeting
Declaration
Swift
public private(set) var organizer: String { get }
-
The name of the organizer of the meeting
Declaration
Swift
public private(set) var organizerName: String { get }
-
The start time of the meeting
Declaration
Swift
public private(set) var startTime: Date { get }
-
The end time of the meeting
Declaration
Swift
public private(set) var endTime: Date { get }
-
Whether the meeting is an all day event or not
Declaration
Swift
public private(set) var isAllDay: Bool { get }
-
Whether the meeting is a recurring event or not
Declaration
Swift
public private(set) var isRecurring: Bool { get }
-
Whether user can join the meeting
Declaration
Swift
public private(set) var canJoin: Bool { get }
-
The meeting link
Declaration
Swift
public private(set) var link: String { get }
-
The SIP url for the meeting
Declaration
Swift
public private(set) var sipUrl: String { get }
-
The meeting subject
Declaration
Swift
public private(set) var subject: String { get }
-
The meeting description
Declaration
Swift
public private(set) var description: String { get }
-
The meeting location
Declaration
Swift
public private(set) var location: String { get }
-
The meeting invitees. See
MeetingInvitee
Declaration
Swift
public private(set) var invitees: [MeetingInvitee] { get }
-
True if the meeting is already joined on another device and is ongoing, otherwise false.
Since
3.12.0Declaration
Swift
public private(set) var isOngoingMeeting: Bool { get }
-
The eventId of the meeting.
Since
3.12.0Declaration
Swift
public private(set) var eventId: String { get }