Module Values.DomainSummarySource

Summary information about one domain.

Sourcetype nonrec t = {
  1. domainName : DomainName.t option;
    (*

    The name of the domain that the summary information applies to.

    *)
  2. autoRenew : Boolean.t option;
    (*

    Indicates whether the domain is automatically renewed upon expiration.

    *)
  3. transferLock : Boolean.t option;
    (*

    Indicates whether a domain is locked from unauthorized transfer to another party.

    *)
  4. expiry : Timestamp.t option;
    (*

    Expiration date of the domain in Unix time format and Coordinated Universal Time (UTC).

    *)
}
Sourceval make : ?domainName:??? -> ?autoRenew:??? -> ?transferLock:??? -> ?expiry:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of DomainName.t | `Timestamp of Timestamp.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