Module Values.BatchUpdateRecommendationStatusSuccessfulEntrySource

List of operational recommendations that were successfully included or excluded.

Sourcetype nonrec t = {
  1. appComponentId : EntityName255.t option;
    (*

    Indicates the identifier of an AppComponent.

    *)
  2. entryId : String255.t option;
    (*

    An identifier for an entry in this batch that is used to communicate the result. The entryIds of a batch request need to be unique within a request.

    *)
  3. excludeReason : ExcludeRecommendationReason.t option;
    (*

    Indicates the reason for excluding an operational recommendation.

    *)
  4. excluded : BooleanOptional.t option;
    (*

    Indicates if the operational recommendation was successfully excluded.

    *)
  5. item : UpdateRecommendationStatusItem.t option;
    (*

    The operational recommendation item.

    *)
  6. referenceId : SpecReferenceId.t option;
    (*

    Reference identifier of the operational recommendation.

    *)
}
Sourceval make : ?appComponentId:??? -> ?entryId:??? -> ?excludeReason:??? -> ?excluded:??? -> ?item:??? -> ?referenceId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanOptional.t | `Enum of string | `String of EntityName255.t | `Structure of (string * [> `String of String500.t ]) 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