UserExtension

@Serializable
data class UserExtension(val id: String, val version: String, val name: String, val canActivate: Boolean, val type: List<String>)

Represents an extension that a user has installed.

See also

Constructors

Link copied to clipboard
constructor(id: String, version: String, name: String, canActivate: Boolean, type: List<String>)

Properties

Link copied to clipboard
@SerialName(value = "can_activate")
val canActivate: Boolean

a Boolean value that determines whether the extension is configured and can be activated.

Link copied to clipboard
val id: String

the ID of the extension.

Link copied to clipboard

the extension's name.

Link copied to clipboard

a list that contains the extension type. Possible values are: component, mobile, overlay, panel.

Link copied to clipboard

the version of the extension.