final case class SubjectAccessReviewStatus(allowed: Boolean, denied: Option[Boolean] = None, evaluationError: Option[String] = None, reason: Option[String] = None) extends Product with Serializable
Ordering
- Alphabetic
- By Inheritance
Inherited
- SubjectAccessReviewStatus
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- val allowed: Boolean
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- val denied: Option[Boolean]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val evaluationError: Option[String]
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def mapAllowed(f: (Boolean) => Boolean): SubjectAccessReviewStatus
transforms allowed to result of function
- def mapDenied(f: (Boolean) => Boolean): SubjectAccessReviewStatus
if denied has a value, transforms to the result of function
- def mapEvaluationError(f: (String) => String): SubjectAccessReviewStatus
if evaluationError has a value, transforms to the result of function
- def mapReason(f: (String) => String): SubjectAccessReviewStatus
if reason has a value, transforms to the result of function
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val reason: Option[String]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- def withAllowed(value: Boolean): SubjectAccessReviewStatus
Returns a new data with allowed set to new value
- def withDenied(value: Boolean): SubjectAccessReviewStatus
Returns a new data with denied set to new value
- def withEvaluationError(value: String): SubjectAccessReviewStatus
Returns a new data with evaluationError set to new value
- def withReason(value: String): SubjectAccessReviewStatus
Returns a new data with reason set to new value