Class Validity
An object that describes a period of time during which an entity is valid.
Inherited Members
Namespace: Oci.CertificatesService.Models
Assembly: OCI.DotNetSDK.Certificates.dll
Syntax
public class ValidityProperties
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