Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 959 Bytes

SavePayeeResponse.md

File metadata and controls

29 lines (20 loc) · 959 Bytes

SavePayeeResponse

Properties

Name Type Description Notes
data SavePayeeResponseData

Example

from ynab.models.save_payee_response import SavePayeeResponse

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

# convert the object into a dict
save_payee_response_dict = save_payee_response_instance.to_dict()
# create an instance of SavePayeeResponse from a dict
save_payee_response_from_dict = SavePayeeResponse.from_dict(save_payee_response_dict)

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