MoreStreamsUserPreview

data class MoreStreamsUserPreview(val id: String, val username: String, val avatar: ImmutableUri?)

Represents a preview of a user in the "More Streams" item.

This data class holds the essential information needed to display a user in a list of users who are also streaming. It includes the user's unique identifier, their username, and an optional avatar image.

Constructors

Link copied to clipboard
constructor(id: String, username: String, avatar: ImmutableUri?)

Properties

Link copied to clipboard

An optional URI representing the user's avatar image. If the user does not have an avatar, this will be null. The URI is wrapped in an ImmutableUri to ensure immutability.

Link copied to clipboard
val id: String

The unique identifier of the user. This is a non-nullable String.

Link copied to clipboard

The username of the user. This is a non-nullable String.