Module Values_0.CertificateValiditySource

When the certificate is valid.

Sourcetype nonrec t = {
  1. notBefore : DateType.t option;
    (*

    The certificate is not valid before this date.

    *)
  2. notAfter : DateType.t option;
    (*

    The certificate is not valid after this date.

    *)
}
Sourceval make : ?notBefore:??? -> ?notAfter:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Timestamp of DateType.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t