Show / Hide Table of Contents

Class RevocationStatus

The current revocation status of the certificate or certificate authority (CA).

Inheritance
object
RevocationStatus
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CertificatesService.Models
Assembly: OCI.DotNetSDK.Certificates.dll
Syntax
public class RevocationStatus

Properties

RevocationReason

Declaration
[Required(ErrorMessage = "RevocationReason is required.")]
[JsonProperty(PropertyName = "revocationReason")]
[JsonConverter(typeof(ResponseEnumConverter))]
public RevocationReason? RevocationReason { get; set; }
Property Value
Type Description
RevocationReason?

The reason that the certificate or CA was revoked.

Remarks

Required

TimeRevoked

Declaration
[Required(ErrorMessage = "TimeRevoked is required.")]
[JsonProperty(PropertyName = "timeRevoked")]
public DateTime? TimeRevoked { get; set; }
Property Value
Type Description
DateTime?

The time when the certificate or CA was revoked.

Remarks

Required

In this article
Back to top