TokenStoreResponse

data class TokenStoreResponse(val azureBlobStorage: BlobStorageTokenStoreResponse? = null, val enabled: Boolean? = null, val fileSystem: FileSystemTokenStoreResponse? = null, val tokenRefreshExtensionHours: Double? = null)

The configuration settings of the token store.

Constructors

Link copied to clipboard
constructor(azureBlobStorage: BlobStorageTokenStoreResponse? = null, enabled: Boolean? = null, fileSystem: FileSystemTokenStoreResponse? = null, tokenRefreshExtensionHours: Double? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The configuration settings of the storage of the tokens if blob storage is used.

Link copied to clipboard
val enabled: Boolean? = null

true to durably store platform-specific security tokens that are obtained during login flows; otherwise, false. The default is false.

Link copied to clipboard

The configuration settings of the storage of the tokens if a file system is used.

Link copied to clipboard

The number of hours after session token expiration that a session token can be used to call the token refresh API. The default is 72 hours.