Update todo.md

This commit is contained in:
karwosts 2025-05-28 11:31:32 -07:00 committed by GitHub
parent 9822f0fd5b
commit 3c0824d152
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -114,3 +114,4 @@ update.
| status | <code>TodoItemStatus &#124; None</code> | `None` | Defines the overall status for the to-do item, either `NEEDS_ACTION` or `COMPLETE`. This field is required for the entity state.
| due | <code>datetime.date &#124; datetime.datetime &#124; None</code> | `None` | The date and time that a to-do is expected to be completed. As a datetime, must have a timezone.
| description | <code>string &#124; None</code> | `None` | A more complete description of the to-do item than that provided by the summary.
| completed | <code> datetime.datetime &#124; None</code> | `None` | A timestamp indicating the time this item was last marked `COMPLETE`.