Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 941 Bytes

File metadata and controls

30 lines (21 loc) · 941 Bytes

PlanSettings

Properties

Name Type Description Notes
date_format DateFormat
currency_format CurrencyFormat

Example

from ynab.models.plan_settings import PlanSettings

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

# convert the object into a dict
plan_settings_dict = plan_settings_instance.to_dict()
# create an instance of PlanSettings from a dict
plan_settings_from_dict = PlanSettings.from_dict(plan_settings_dict)

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