Module Values.UpdateAgentSpaceInputSource

Input for updating an existing AgentSpace's properties. All fields except agentSpaceId are optional for partial updates.

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

    The unique identifier of the AgentSpace

    *)
  2. name : AgentSpaceName.t option;
    (*

    The updated name of the AgentSpace.

    *)
  3. description : Description.t option;
    (*

    The updated description of the AgentSpace.

    *)
  4. locale : Locale.t option;
    (*

    The updated locale for the AgentSpace, which determines the language used in agent responses.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?description:??? -> ?locale:??? -> agentSpaceId:AgentSpaceId.t -> unit -> t
Sourceval to_value : t -> [> `Structure 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