Module Values.ClickFeedbackSource

Gathers information about when a particular result was clicked by a user. Your application uses the SubmitFeedback API to provide click information.

Sourcetype nonrec t = {
  1. resultId : ResultId.t;
    (*

    The identifier of the search result that was clicked.

    *)
  2. clickTime : Timestamp.t;
    (*

    The Unix timestamp when the result was clicked.

    *)
}
Sourceval context_ : string
Sourceval make : resultId:ResultId.t -> clickTime:Timestamp.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ResultId.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