GroupCallOptions

public struct GroupCallOptions

Options for joining a group call.

  • The token credential used for communication service authentication.

    Declaration

    Swift

    public let credential: CommunicationTokenCredential
  • The unique identifier for the group conversation.

    Declaration

    Swift

    public let groupId: UUID
  • 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 GroupCallOptions with options.

    Declaration

    Swift

    public init(credential: CommunicationTokenCredential,
                groupId: UUID,
                displayName: String)

    Parameters

    credential

    The credential used for Azure Communication Service authentication.

    groupId

    The unique identifier for joining a specific group conversation.

    displayName

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

  • Create an instance of a GroupCallOptions with options.

    Declaration

    Swift

    public init(credential: CommunicationTokenCredential,
                groupId: UUID)

    Parameters

    credential

    The credential used for Azure Communication Service authentication.

    groupId

    The unique identifier for joining a specific group conversation.