HMSWhiteboard

data class HMSWhiteboard(val id: String, val title: String? = null, val owner: HMSPeer? = null, val isOwner: Boolean, val url: String, val state: State = State.Stopped)

Represents a whiteboard in the (HMS) platform.

Parameters

id

The unique identifier of the whiteboard.

title

The optional title of the whiteboard.

owner

The optional peer (user or participant) who owns the whiteboard.

url

The URL of the whiteboard.

Constructors

Link copied to clipboard
fun HMSWhiteboard(id: String, title: String? = null, owner: HMSPeer? = null, isOwner: Boolean, url: String, state: State = State.Stopped)

Properties

Link copied to clipboard
val id: String
Link copied to clipboard
Link copied to clipboard
val owner: HMSPeer? = null
Link copied to clipboard
Link copied to clipboard
val title: String? = null
Link copied to clipboard
val url: String