Module Values.UpdateRecommendationRequestSource

Request structure for updating an existing recommendation

Sourcetype nonrec t = {
  1. agentSpaceId : AgentSpaceId.t;
    (*

    The unique identifier for the agent space containing the recommendation

    *)
  2. recommendationId : ResourceId.t;
    (*

    The unique identifier for the recommendation to update

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

    Current status of the recommendation

    *)
  4. additionalContext : String_.t option;
    (*

    Additional context for recommendation

    *)
  5. clientToken : String_.t option;
    (*

    A unique token that ensures idempotency of the request

    *)
}
Sourceval context_ : string
Sourceval make : ?status:??? -> ?additionalContext:??? -> ?clientToken:??? -> agentSpaceId:AgentSpaceId.t -> recommendationId:ResourceId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AgentSpaceId.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