Interface CertificateStatusInformation

interface CertificateStatusInformation {
    date?: Date;
    error?: string;
    expires?: Date;
    issued?: Date;
    owner?: CertificateOwner;
    status: CertificateStatus;
}

Properties

date?: Date

The date when the status was last updated.

error?: string

The error message if the status is ERROR.

expires?: Date

The date when the certificate expires.

issued?: Date

The date when the certificate was issued.

The owner of the certificate.

The status of the certificate.