LettaAPI.Model.Run (letta_api v1.0.0)
Representation of a run, which is a job with a 'run' prefix in its ID. Inherits all fields and behavior from Job except for the ID prefix. Parameters: id (str): The unique identifier of the run (prefixed with 'run-'). status (JobStatus): The status of the run. created_at (datetime): The unix timestamp of when the run was created. completed_at (datetime): The unix timestamp of when the run was completed. user_id (str): The unique identifier of the user associated with the run.
Summary
Types
@type t() :: %LettaAPI.Model.Run{ callback_sent_at: DateTime.t() | nil, callback_status_code: integer() | nil, callback_url: String.t() | nil, completed_at: DateTime.t() | nil, created_at: DateTime.t() | nil, created_by_id: String.t() | nil, id: String.t() | nil, job_type: LettaAPI.Model.JobType.t() | nil, last_updated_by_id: String.t() | nil, metadata: %{optional(String.t()) => any()} | nil, request_config: LettaAPI.Model.LettaRequestConfig.t() | nil, status: LettaAPI.Model.JobStatus.t() | nil, updated_at: DateTime.t() | nil, user_id: String.t() | nil }