Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/TransactionFlagColor.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ The transaction flag

* `PURPLE` (value: `'purple'`)

* `EMPTY` (value: `''`)

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


1 change: 1 addition & 0 deletions open_api_spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3385,6 +3385,7 @@ components:
- green
- blue
- purple
- ""
- null
nullable: true
TransactionFlagName:
Expand Down
1 change: 1 addition & 0 deletions ynab/models/transaction_flag_color.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ class TransactionFlagColor(str, Enum):
GREEN = 'green'
BLUE = 'blue'
PURPLE = 'purple'
EMPTY = ''

@classmethod
def from_json(cls, json_str: str) -> Self:
Expand Down