TokenCertificateResponse

data class TokenCertificateResponse(val encodedPemCertificate: String? = null, val expiry: String? = null, val name: String? = null, val thumbprint: String? = null)

The properties of a certificate used for authenticating a token.

Constructors

Link copied to clipboard
constructor(encodedPemCertificate: String? = null, expiry: String? = null, name: String? = null, thumbprint: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Base 64 encoded string of the public certificate1 in PEM format that will be used for authenticating the token.

Link copied to clipboard
val expiry: String? = null

The expiry datetime of the certificate.

Link copied to clipboard
val name: String? = null
Link copied to clipboard
val thumbprint: String? = null

The thumbprint of the certificate.