Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 974 Bytes

File metadata and controls

29 lines (20 loc) · 974 Bytes

PlanDetailResponse

Properties

Name Type Description Notes
data PlanDetailResponseData

Example

from ynab.models.plan_detail_response import PlanDetailResponse

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

# convert the object into a dict
plan_detail_response_dict = plan_detail_response_instance.to_dict()
# create an instance of PlanDetailResponse from a dict
plan_detail_response_from_dict = PlanDetailResponse.from_dict(plan_detail_response_dict)

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