TeamsMeetingOptions

public struct TeamsMeetingOptions

Options for joining a Team’s meeting.

  • The token credential used for communication service authentication.

    Declaration

    Swift

    public let credential: CommunicationTokenCredential
  • The URI of the Team’s meeting.

    Declaration

    Swift

    public let meetingLink: String
  • The display name of the local participant when joining the call.

    The limit for string length is 256.

    Declaration

    Swift

    public let displayName: String?
  • Create an instance of a TeamsMeetingOptions with options.

    Declaration

    Swift

    public init(credential: CommunicationTokenCredential,
                meetingLink: String,
                displayName: String)

    Parameters

    credential

    The credential used for Azure Communication Service authentication.

    meetingLink

    A string representing the full URI of the teams meeting to join.

    displayName

    The display name of the local participant for the call. The limit for string length is 256.

  • Create an instance of a TeamsMeetingOptions with options.

    Declaration

    Swift

    public init(credential: CommunicationTokenCredential,
                meetingLink: String)

    Parameters

    credential

    The credential used for Azure Communication Service authentication.

    meetingLink

    A string representing the full URI of the teams meeting to join.