Current section

Files

Jump to
ex_todoist lib todoist domain task.ex
Raw

lib/todoist/domain/task.ex

defmodule Todoist.Domain.Task do
@derive Jason.Encoder
defstruct content: nil,
project_id: 0,
section_id: 0,
parent_id: 0,
order: 0,
label_ids: nil,
priority: 0,
due_string: nil,
due_date: nil,
due_datetime: nil,
due_lang: nil,
assignee: 0
end