ProfileProperty

interface ProfileProperty

A property of a game profile.

Types

Link copied to clipboard
object Companion
Link copied to clipboard
@ApiStatus.Internal
interface Factory

Functions

Link copied to clipboard
@Contract(value = "_ -> new", pure = true)
abstract fun withoutSignature(): ProfileProperty

Creates a new profile property without a signature.

Link copied to clipboard
@Contract(value = "_ -> new", pure = true)
abstract fun withSignature(signature: String?): ProfileProperty

Creates a new profile property with the given signature.

Properties

Link copied to clipboard
@get:JvmName(name = "name")
abstract val name: String

The name of the property.

Link copied to clipboard
@get:JvmName(name = "signature")
abstract val signature: String?

The signature for this property.

Link copied to clipboard
@get:JvmName(name = "value")
abstract val value: String

The value of the property.