Module Values.ContactsSource

A list of potential contact methods for the result/place.

Sourcetype nonrec t = {
  1. phones : ContactDetailsList.t option;
    (*

    List of phone numbers for the results contact.

    *)
  2. faxes : ContactDetailsList.t option;
    (*

    List of fax addresses for the result contact.

    *)
  3. websites : ContactDetailsList.t option;
    (*

    List of website URLs that belong to the result.

    *)
  4. emails : ContactDetailsList.t option;
    (*

    List of emails for contacts of the result.

    *)
}
Sourceval make : ?phones:??? -> ?faxes:??? -> ?websites:??? -> ?emails:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of SensitiveBoolean.t | `String of CategoryIdString.t ]) list ] list | `String of ContactDetailsLabelString.t ]) list ] list ]) 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