Member

data class Member(val steamID: SteamID, val personaName: String, val metadata: Map<String, String> = emptyMap())

Represents a Steam user within a lobby.

Author

Lossy

Since

2025-05-21

Parameters

steamID

SteamID of the lobby member.

personaName

Steam persona of the lobby member.

metadata

Metadata attached to the lobby member.

Constructors

Link copied to clipboard
constructor(steamID: SteamID, personaName: String, metadata: Map<String, String> = emptyMap())

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean

Checks to see if this lobby member is equal to another. Only the SteamID of the lobby member is taken into account.

Link copied to clipboard
open override fun hashCode(): Int

Hash code of the lobby member. Only the SteamID of the lobby member is taken into account.