Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 935 Bytes

File metadata and controls

30 lines (21 loc) · 935 Bytes

DateFormat

The date format setting for the plan. In some cases the format will not be available and will be specified as null.

Properties

Name Type Description Notes
format str

Example

from ynab.models.date_format import DateFormat

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

# convert the object into a dict
date_format_dict = date_format_instance.to_dict()
# create an instance of DateFormat from a dict
date_format_from_dict = DateFormat.from_dict(date_format_dict)

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