GetApiTokenResult

data class GetApiTokenResult(val condition: GetApiTokenCondition, val expiresOn: String, val filter: GetApiTokenFilter? = null, val id: String, val issuedOn: String, val lastUsedOn: String, val modifiedOn: String, val name: String, val notBefore: String, val policies: List<GetApiTokenPolicy>, val status: String, val tokenId: String? = null)

A collection of values returned by getApiToken.

Constructors

Link copied to clipboard
constructor(condition: GetApiTokenCondition, expiresOn: String, filter: GetApiTokenFilter? = null, id: String, issuedOn: String, lastUsedOn: String, modifiedOn: String, name: String, notBefore: String, policies: List<GetApiTokenPolicy>, status: String, tokenId: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
Link copied to clipboard

The expiration time on or after which the JWT MUST NOT be accepted for processing.

Link copied to clipboard
Link copied to clipboard
val id: String

Token identifier tag.

Link copied to clipboard

The time on which the token was created.

Link copied to clipboard

Last time the token was used.

Link copied to clipboard

Last time the token was modified.

Link copied to clipboard

Token name.

Link copied to clipboard

The time before which the token MUST NOT be accepted for processing.

Link copied to clipboard

List of access policies assigned to the token.

Link copied to clipboard

Status of the token. Available values: "active", "disabled", "expired".

Link copied to clipboard
val tokenId: String? = null

Token identifier tag.