Module Values.GetRecommendationRequestSource

Request structure for retrieving a specific 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 retrieve

    *)
  3. recommendationVersion : Long.t option;
    (*

    Specific version of the recommendation to retrieve. If not specified, returns the latest version.

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