Module Values.SavedAddressSource

An address that is a member of an address list.

Sourcetype nonrec t = {
  1. address : Address.t option;
    (*

    The email or domain that constitutes the address.

    *)
  2. createdTimestamp : Timestamp.t option;
    (*

    The timestamp of when the address was added to the address list.

    *)
}
Sourceval make : ?address:??? -> ?createdTimestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Address.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