SearchForMeetingType
public enum SearchForMeetingType
-
This does not discriminate on any type of meeting. All available meetings are returned.
Declaration
Swift
case any
-
This returns only meetings that have a physical address.
Declaration
Swift
case inPerson(isExclusive: Bool = false)
Parameters
isExclusive
If true, then hybrid meetings are not included. Default is false.
-
This returns only meetings that have a virtual component.
Declaration
Swift
case virtual(isExclusive: Bool = false)
Parameters
isExclusive
If true, then hybrid meetings are not included. Default is false.
-
This returns only meetings that have both a physical and a virtual component.
Declaration
Swift
case hybrid