JwtAuthenticateResponseDto

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

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

Link copied to clipboard
constructor(tokenId: String? = null, accessToken: String? = null, expiresIn: Int? = null)

Properties

Link copied to clipboard
@SerializedName(value = "access_token")
val accessToken: String? = null
Link copied to clipboard
@SerializedName(value = "expires_in")
val expiresIn: Int? = null
Link copied to clipboard
@SerializedName(value = "token_id")
val tokenId: String? = null