Module Values.BatchDeleteFeaturedResultsSetErrorSource

Provides information about a set of featured results that couldn't be removed from an index by the BatchDeleteFeaturedResultsSet API.

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

    The identifier of the set of featured results that couldn't be removed from the index.

    *)
  2. errorCode : ErrorCode.t option;
    (*

    The error code for why the set of featured results couldn't be removed from the index.

    *)
  3. errorMessage : ErrorMessage.t option;
    (*

    An explanation for why the set of featured results couldn't be removed from the index.

    *)
}
Sourceval make : ?id:??? -> ?errorCode:??? -> ?errorMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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