Module Values.DisassociateAgentKnowledgeBaseRequestSource

Disassociates a knowledge base from an agent.

Sourcetype nonrec t = {
  1. agentId : Id.t;
    (*

    The unique identifier of the agent from which to disassociate the knowledge base.

    *)
  2. agentVersion : DraftVersion.t;
    (*

    The version of the agent from which to disassociate the knowledge base.

    *)
  3. knowledgeBaseId : Id.t;
    (*

    The unique identifier of the knowledge base to disassociate.

    *)
}
Sourceval context_ : string
Sourceval make : agentId:Id.t -> agentVersion:DraftVersion.t -> knowledgeBaseId:Id.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Id.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