Module Values.FeaturedResultsSetSummarySource

Summary information for a set of featured results. Featured results are placed above all other results for certain queries. If there's an exact match of a query, then one or more specific documents are featured in the search results.

Sourcetype nonrec t = {
  1. featuredResultsSetId : FeaturedResultsSetId.t option;
    (*

    The identifier of the set of featured results.

    *)
  2. featuredResultsSetName : FeaturedResultsSetName.t option;
    (*

    The name for the set of featured results.

    *)
  3. status : FeaturedResultsSetStatus.t option;
    (*

    The current status of the set of featured results. When the value is ACTIVE, featured results are ready for use. You can still configure your settings before setting the status to ACTIVE. You can set the status to ACTIVE or INACTIVE using the UpdateFeaturedResultsSet API. The queries you specify for featured results must be unique per featured results set for each index, whether the status is ACTIVE or INACTIVE.

    *)
  4. lastUpdatedTimestamp : Long.t option;
    (*

    The Unix timestamp when the set of featured results was last updated.

    *)
  5. creationTimestamp : Long.t option;
    (*

    The Unix timestamp when the set of featured results was created.

    *)
}
Sourceval make : ?featuredResultsSetId:??? -> ?featuredResultsSetName:??? -> ?status:??? -> ?lastUpdatedTimestamp:??? -> ?creationTimestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of Long.t | `String of FeaturedResultsSetId.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