Subject Description Response
data class SubjectDescriptionResponse(val hexSerialNumber: String, val lifetime: String, val notAfterTime: String, val notBeforeTime: String, val subject: SubjectResponse, val subjectAltName: SubjectAltNamesResponse)
These values describe fields in an issued X.509 certificate such as the distinguished name, subject alternative names, serial number, and lifetime.
Constructors
Link copied to clipboard
constructor(hexSerialNumber: String, lifetime: String, notAfterTime: String, notBeforeTime: String, subject: SubjectResponse, subjectAltName: SubjectAltNamesResponse)
Properties
Link copied to clipboard
The serial number encoded in lowercase hexadecimal.
Link copied to clipboard
The time after which the certificate is expired. Per RFC 5280, the validity period for a certificate is the period of time from not_before_time through not_after_time, inclusive. Corresponds to 'not_before_time' + 'lifetime' - 1 second.
Link copied to clipboard
The time at which the certificate becomes valid.
Link copied to clipboard
Contains distinguished name fields such as the common name, location and / organization.
Link copied to clipboard
The subject alternative name fields.