Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.02 KB

File metadata and controls

29 lines (20 loc) · 1.02 KB

PlanSettingsResponseData

Properties

Name Type Description Notes
settings PlanSettings

Example

from ynab.models.plan_settings_response_data import PlanSettingsResponseData

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

# convert the object into a dict
plan_settings_response_data_dict = plan_settings_response_data_instance.to_dict()
# create an instance of PlanSettingsResponseData from a dict
plan_settings_response_data_from_dict = PlanSettingsResponseData.from_dict(plan_settings_response_data_dict)

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