Module Values.PartnerDomainSource

Represents a verified domain associated with a partner account.

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

    The domain name that has been verified for the partner account.

    *)
  2. registeredAt : DateTime.t option;
    (*

    The timestamp when the domain was registered and verified for the partner account.

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