Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1004 Bytes

File metadata and controls

29 lines (20 loc) · 1004 Bytes

PlanSettingsResponse

Properties

Name Type Description Notes
data PlanSettingsResponseData

Example

from ynab.models.plan_settings_response import PlanSettingsResponse

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

# convert the object into a dict
plan_settings_response_dict = plan_settings_response_instance.to_dict()
# create an instance of PlanSettingsResponse from a dict
plan_settings_response_from_dict = PlanSettingsResponse.from_dict(plan_settings_response_dict)

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