Origin

class Origin(type: String, name: String?)

Indicates why a user has the role.

An origin of type user means the role is assigned directly to the user (in which case the name field is null). An origin of type group means the role is inherited from the group identified by the name field.

Constructors

Link copied to clipboard
fun Origin(type: String, name: String? = null)

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open override fun toString(): String

Properties

Link copied to clipboard
val name: String? = null
Link copied to clipboard
val type: String