Role

@Serializable
data class Role(val disabled: Boolean? = null, val enabled: Boolean? = null, val id: Long? = null, val name: String? = null, val new: Boolean? = null, val permissions: List<Permission>? = null)

Parameters

disabled
enabled
id
name
new
permissions

Constructors

Link copied to clipboard
constructor(disabled: Boolean? = null, enabled: Boolean? = null, id: Long? = null, name: String? = null, new: Boolean? = null, permissions: List<Permission>? = null)

Properties

Link copied to clipboard
val disabled: Boolean? = null
Link copied to clipboard
val enabled: Boolean? = null
Link copied to clipboard
val id: Long? = null
Link copied to clipboard
val name: String? = null
Link copied to clipboard
val new: Boolean? = null
Link copied to clipboard