LettaAPI.Model.Job (letta_api v1.0.0)

Representation of offline jobs, used for tracking status of data loading tasks (involving parsing and embedding files). Parameters: id (str): The unique identifier of the job. status (JobStatus): The status of the job. created_at (datetime): The unix timestamp of when the job was created. completed_at (datetime): The unix timestamp of when the job was completed. user_id (str): The unique identifier of the user associated with the.

Summary

Types

t()

@type t() :: %LettaAPI.Model.Job{
  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,
  status: LettaAPI.Model.JobStatus.t() | nil,
  updated_at: DateTime.t() | nil,
  user_id: String.t() | nil
}

Functions

decode(value)