PluginPrivilege

@Serializable
data class PluginPrivilege(val name: String? = null, val description: String? = null, val value: List<String>? = null)

Describes a permission the user has to accept upon installing the plugin.

Parameters

name
description
`value`

Constructors

Link copied to clipboard
constructor(name: String? = null, description: String? = null, value: List<String>? = null)

Properties

Link copied to clipboard
@SerialName(value = "Description")
val description: String?
Link copied to clipboard
@SerialName(value = "Name")
val name: String?
Link copied to clipboard
@SerialName(value = "Value")
val value: List<String>?