Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.07 KB

File metadata and controls

30 lines (21 loc) · 1.07 KB

PlanSummaryResponseData

Properties

Name Type Description Notes
plans List[PlanSummary]
default_plan PlanSummary [optional]

Example

from ynab.models.plan_summary_response_data import PlanSummaryResponseData

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

# convert the object into a dict
plan_summary_response_data_dict = plan_summary_response_data_instance.to_dict()
# create an instance of PlanSummaryResponseData from a dict
plan_summary_response_data_from_dict = PlanSummaryResponseData.from_dict(plan_summary_response_data_dict)

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