tags
#
Lunch Money - Tags
TagsClient
#
Bases: LunchMoneyAPIClient
Lunch Money Tag Interactions
Source code in lunchable/models/tags.py
get_tags()
#
Get Spending Tags
Use this endpoint to get a list of all tags associated with the user's account.
https://lunchmoney.dev/#get-all-tags
Returns:
Type | Description |
---|---|
List[TagsObject]
|
|
Source code in lunchable/models/tags.py
TagsObject
#
Bases: LunchableModel
Lunchmoney Tags object
https://lunchmoney.dev/#tags-object
Parameters:
Name | Type | Description | Default |
---|---|---|---|
id |
int
|
Unique identifier for tag |
required |
name |
str
|
User-defined name of tag |
required |
description |
str | None
|
User-defined description of tag |
None
|
archived |
bool
|
If true, the tag will not show up when creating or updating transactions in the Lunch Money app |
False
|