Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.1 KB

CategorySpent.md

File metadata and controls

33 lines (24 loc) · 1.1 KB

CategorySpent

Properties

Name Type Description Notes
currency_code str [optional]
currency_decimal_places int Number of decimals supported by the currency [optional]
currency_id str [optional]
currency_symbol str [optional]
sum str The amount spent. [optional]

Example

from firefly_iii_client.models.category_spent import CategorySpent

# TODO update the JSON string below
json = "{}"
# create an instance of CategorySpent from a JSON string
category_spent_instance = CategorySpent.from_json(json)
# print the JSON string representation of the object
print(CategorySpent.to_json())

# convert the object into a dict
category_spent_dict = category_spent_instance.to_dict()
# create an instance of CategorySpent from a dict
category_spent_form_dict = category_spent.from_dict(category_spent_dict)

[Back to Model list] [Back to API list] [Back to README]