LGV_MeetingSDK_Meeting_Virtual_Venue_Protocol

public protocol LGV_MeetingSDK_Meeting_Virtual_Venue_Protocol : LGV_MeetingSDK_Additional_Info_Protocol

This is one of the venues in a virtual meeting specifier.

  • REQUIRED - This describes the meeting venue (i.e. “Video,” “Zoom,” “Audio-Only,” “Phone,” etc.).

    Declaration

    Swift

    var description: String { get }
  • REQUIRED - The local timezone for the meeting.

    Note

    It is important to implement this, if the meeting is held in a particular timezone, and does not have a physical placemark!

    Declaration

    Swift

    var timeZone: TimeZone? { get }
  • url Default implementation

    OPTIONAL - If the meeting has a URI, that is available here.

    Default Implementation

    Default is nil.

    Declaration

    Swift

    var url: URL? { get }
  • meetingID Default implementation

    OPTIONAL - If the meeting has a separate meeting ID, that is available here, as a String.

    Default Implementation

    Default is nil.

    Declaration

    Swift

    var meetingID: String? { get }
  • password Default implementation

    OPTIONAL - If the meeting has a separate meeting password, that is available here, as a String.

    Default Implementation

    Default is nil.

    Declaration

    Swift

    var password: String? { get }