Module Values.UpdateRecommendationStatusRequestEntrySource

Defines the operational recommendation item that is to be included or excluded.

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

    Indicates the identifier of the AppComponent.

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

    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;
    (*

    Indicates if the operational recommendation needs to be excluded. If set to True, the operational recommendation will be excluded.

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

    The operational recommendation item.

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

    Reference identifier of the operational recommendation item.

    *)
}
Sourceval context_ : string
Sourceval make : ?appComponentId:??? -> ?excludeReason:??? -> ?item:??? -> entryId:String255.t -> excluded:BooleanOptional.t -> referenceId:SpecReferenceId.t -> 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