CertificatePropertiesResponse

data class CertificatePropertiesResponse(val certificate: String? = null, val created: String, val expiry: String, val isVerified: Boolean? = null, val subject: String, val thumbprint: String, val updated: String)

The description of an X509 CA Certificate.

Constructors

Link copied to clipboard
constructor(certificate: String? = null, created: String, expiry: String, isVerified: Boolean? = null, subject: String, thumbprint: String, updated: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val certificate: String? = null

base-64 representation of X509 certificate .cer file or just .pem file content.

Link copied to clipboard

The certificate's creation date and time.

Link copied to clipboard

The certificate's expiration date and time.

Link copied to clipboard
val isVerified: Boolean? = null

Determines whether certificate has been verified.

Link copied to clipboard

The certificate's subject name.

Link copied to clipboard

The certificate's thumbprint.

Link copied to clipboard

The certificate's last update date and time.