Module Values.ContactDetailsSource

Details related to contacts.

Sourcetype nonrec t = {
  1. label : ContactDetailsLabelString.t option;
    (*

    The contact's label.

    *)
  2. value : ContactDetailsValueString.t option;
    (*

    The contact's value.

    *)
  3. categories : CategoryList.t option;
    (*

    Categories of results that results must belong too.

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