What's New
Archived status for Todos and Issues
SDK users can now check if todos and issues are archived via the archived field:
todos = client.todo.list()
for todo in todos:
if todo.archived:
print(f"Archived: {todo.name}")
issue = client.issue.details(123)
print(issue.archived) # True or FalseChanges
- Add
archived: booltoTodo,IssueDetails, andIssueListItemmodels - Add
IsPresentreusable annotated type for coercing nullable API values to booleans - Update issues transform mixin to pass through
Archivedfrom API responses
Full Changelog: v0.21.2...v0.22.0