JwtAuthenticateResponseDto

data class JwtAuthenticateResponseDto(tokenId: String?, accessToken: String?, expiresIn: Int?)

Parameters

tokenId

A random string that may be used to generate signed URLs for certain resources, in circumstances where it is not possible to pass an Authorization header. For example, when showing an embedded image in a web page.

accessToken

The access token which can be used as a bearer token for authenticated requests.

expiresIn

The number of seconds until the token expires.

Constructors

JwtAuthenticateResponseDto
Link copied to clipboard
fun JwtAuthenticateResponseDto(tokenId: String? = null, accessToken: String? = null, expiresIn: Int? = null)
A random string that may be used to generate signed URLs for certain resources, in circumstances where it is not possible to pass an Authorization header.

Properties

accessToken
Link copied to clipboard
@SerializedName(value = access_token)
val accessToken: String? = null
The access token which can be used as a bearer token for authenticated requests.
expiresIn
Link copied to clipboard
@SerializedName(value = expires_in)
val expiresIn: Int? = null
The number of seconds until the token expires.
tokenId
Link copied to clipboard
@SerializedName(value = token_id)
val tokenId: String? = null
A random string that may be used to generate signed URLs for certain resources, in circumstances where it is not possible to pass an Authorization header.