Module Values.ExecutionSource

Represents an execution instance with its lifecycle information

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

    The unique identifier for the agent space containing this execution

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

    The unique identifier for this execution

    *)
  3. parentExecutionId : String_.t option;
    (*

    The identifier of the parent execution, if this is a child execution

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

    The specific subtask being executed by the agent

    *)
  5. createdAt : JournalTimestamp.t option;
    (*

    Timestamp when this execution was created

    *)
  6. updatedAt : JournalTimestamp.t option;
    (*

    Timestamp when this execution was last updated

    *)
  7. executionStatus : ExecutionStatus.t option;
    (*

    The current status of this execution

    *)
  8. agentType : String_.t option;
    (*

    The type of agent that performed this execution.

    *)
  9. uid : String_.t option;
    (*

    The unique identifier for the user session associated with this execution

    *)
}
Sourceval make : ?agentSpaceId:??? -> ?executionId:??? -> ?parentExecutionId:??? -> ?agentSubTask:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?executionStatus:??? -> ?agentType:??? -> ?uid:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Timestamp of JournalTimestamp.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