Module Values.AgentSpaceSummarySource

Contains summary information about an agent space.

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

    The unique identifier of the agent space.

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

    The name of the agent space.

    *)
  3. createdAt : SyntheticTimestamp_date_time.t option;
    (*

    The date and time the agent space was created, in UTC format.

    *)
  4. updatedAt : SyntheticTimestamp_date_time.t option;
    (*

    The date and time the agent space was last updated, in UTC format.

    *)
}
Sourceval make : ?agentSpaceId:??? -> ?name:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AgentSpaceId.t | `Timestamp of SyntheticTimestamp_date_time.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