TokenReviewStatus

final case class TokenReviewStatus(audiences: Option[Seq[String]], authenticated: Option[Boolean], error: Option[String], user: Option[UserInfo])

TokenReviewStatus is the result of the token authentication request.

Source:
TokenReviewStatus.scala
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

Appends new values to audiences

Appends new values to audiences

Source:
TokenReviewStatus.scala

if audiences has a value, transforms to the result of function

if audiences has a value, transforms to the result of function

Source:
TokenReviewStatus.scala

if authenticated has a value, transforms to the result of function

if authenticated has a value, transforms to the result of function

Source:
TokenReviewStatus.scala

if error has a value, transforms to the result of function

if error has a value, transforms to the result of function

Source:
TokenReviewStatus.scala

if user has a value, transforms to the result of function

if user has a value, transforms to the result of function

Source:
TokenReviewStatus.scala

Returns a new data with audiences set to new value

Returns a new data with audiences set to new value

Source:
TokenReviewStatus.scala

Returns a new data with authenticated set to new value

Returns a new data with authenticated set to new value

Source:
TokenReviewStatus.scala

Returns a new data with error set to new value

Returns a new data with error set to new value

Source:
TokenReviewStatus.scala

Returns a new data with user set to new value

Returns a new data with user set to new value

Source:
TokenReviewStatus.scala

Inherited methods

Inherited from:
Product