Show / Hide Table of Contents

Class Validity

An object that describes a period of time during which an entity is valid.

Inheritance
object
Validity
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 Validity

Properties

TimeOfValidityNotAfter

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

The date on which the certificate validity period ends, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

Remarks

Required

TimeOfValidityNotBefore

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

The date on which the certificate validity period begins, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

Remarks

Required

In this article
Back to top