Show / Hide Table of Contents

Class RevocationStatus

The current revocation status of the entity.

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.CertificatesmanagementService.Models
Assembly: OCI.DotNetSDK.Certificatesmanagement.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 the certificate or certificate authority (CA) was revoked.

Remarks

Required

TimeOfRevocation

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

The time when the entity was revoked, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

Remarks

Required

In this article
Back to top