Participant


@ExperimentalAppActions
class Participant


A representation of aspects of a participant in a Call.

Summary

Public constructors

Public functions

open operator Boolean
equals(other: Any?)
open Int
open String

Public properties

String

A unique identifier shared with remote surfaces that represents this participant.

CharSequence

The name of the Participant, which remote surfaces will display to users.

Public constructors

Participant

Added in 1.0.0-beta01
Participant(id: String, name: CharSequence)
Parameters
id: String

A unique identifier shared with remote surfaces that represents this participant. This value MUST be unique and stable for the life of the call, meaning that this ID should not change or be reused for the lifetime of the call.

name: CharSequence

The name of the Participant, which remote surfaces will display to users.

Public functions

equals

open operator fun equals(other: Any?): Boolean

hashCode

open fun hashCode(): Int

toString

open fun toString(): String

Public properties

id

Added in 1.0.0-beta01
val idString

A unique identifier shared with remote surfaces that represents this participant. This value MUST be unique and stable for the life of the call, meaning that this ID should not change or be reused for the lifetime of the call.

name

Added in 1.0.0-beta01
val nameCharSequence

The name of the Participant, which remote surfaces will display to users.