Class Certificate.CertificateDetails
-
- All Implemented Interfaces:
public final class Certificate.CertificateDetails
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classCertificate.CertificateDetails.BuilderA builder for CertificateDetails.
-
Method Summary
Modifier and Type Method Description final Optional<String>content()The content of the certificate in PEM format. final Optional<Long>expiresAt()The Unix timestamp (in seconds) of when the certificate expires. final Optional<Long>validAt()The Unix timestamp (in seconds) of when the certificate becomes valid. final JsonField<String>_content()Returns the raw JSON value of content. final JsonField<Long>_expiresAt()Returns the raw JSON value of expiresAt. final JsonField<Long>_validAt()Returns the raw JSON value of validAt. final Map<String, JsonValue>_additionalProperties()final Certificate.CertificateDetails.BuildertoBuilder()final Certificate.CertificateDetailsvalidate()Validates that the types of all values in this object match their expected types recursively. final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static Certificate.CertificateDetails.Builderbuilder()Returns a mutable builder for constructing an instance of CertificateDetails. -
-
Method Detail
-
expiresAt
final Optional<Long> expiresAt()
The Unix timestamp (in seconds) of when the certificate expires.
-
validAt
final Optional<Long> validAt()
The Unix timestamp (in seconds) of when the certificate becomes valid.
-
_content
final JsonField<String> _content()
Returns the raw JSON value of content.
Unlike content, this method doesn't throw if the JSON field has an unexpected type.
-
_expiresAt
final JsonField<Long> _expiresAt()
Returns the raw JSON value of expiresAt.
Unlike expiresAt, this method doesn't throw if the JSON field has an unexpected type.
-
_validAt
final JsonField<Long> _validAt()
Returns the raw JSON value of validAt.
Unlike validAt, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final Certificate.CertificateDetails.Builder toBuilder()
-
validate
final Certificate.CertificateDetails validate()
Validates that the types of all values in this object match their expected types recursively.
This method is not forwards compatible with new types from the API for existing fields.
-
builder
final static Certificate.CertificateDetails.Builder builder()
Returns a mutable builder for constructing an instance of CertificateDetails.
-
-
-
-