ActiveExtensionSlot

@Serializable
data class ActiveExtensionSlot(val active: Boolean, val id: String? = null, val version: String? = null, val name: String? = null, val x: Int? = null, val y: Int? = null)

Represents an active extension in a specific slot.

Constructors

Link copied to clipboard
constructor(active: Boolean, id: String? = null, version: String? = null, name: String? = null, x: Int? = null, y: Int? = null)

Properties

Link copied to clipboard

a Boolean value that determines whether the extension is active.

Link copied to clipboard
val id: String?

the ID of the extension. Is null if the extension is not active.

Link copied to clipboard
val name: String?

the name of the extension. Is null if the extension is not active.

Link copied to clipboard

the version of the extension. Is null if the extension is not active.

Link copied to clipboard
val x: Int?

the x-coordinate of the extension. Only set for component extensions. Is null otherwise.

Link copied to clipboard
val y: Int?

the y-coordinate of the extension. Only set for component extensions. Is null otherwise.