case class TokenRequestStatus(expirationTimestamp: Time, token: String) extends Product with Serializable

TokenRequestStatus is the result of a token request.

token

Token is the opaque bearer token.

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TokenRequestStatus
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new TokenRequestStatus(expirationTimestamp: Time, token: String)

    token

    Token is the opaque bearer token.

Value Members

  1. val expirationTimestamp: Time
  2. def getExpirationTimestamp: IO[K8sFailure, Time]

    Gets expirationTimestamp.

    Gets expirationTimestamp.

    This effect always succeeds, it is safe to use the field expirationTimestamp directly.

  3. def getToken: IO[K8sFailure, String]

    Token is the opaque bearer token.

    Token is the opaque bearer token.

    This effect always succeeds, it is safe to use the field token directly.

  4. val token: String