Jido.Actions.Tasks.Task (Jido v1.2.0)

View Source

Defines the task data structure used by the Tasks actions.

Represents a task with properties such as id, title, completion status, creation timestamp, and deadline.

Summary

Types

t()

@type t() :: %Jido.Actions.Tasks.Task{
  completed: :boolean | nil,
  created_at: :any | nil,
  deadline: :any | nil,
  id: :string | nil,
  title: :string | nil
}

Functions

new(title, deadline)