Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 928 Bytes

PayeeResponseData.md

File metadata and controls

29 lines (20 loc) · 928 Bytes

PayeeResponseData

Properties

Name Type Description Notes
payee Payee

Example

from ynab.models.payee_response_data import PayeeResponseData

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

# convert the object into a dict
payee_response_data_dict = payee_response_data_instance.to_dict()
# create an instance of PayeeResponseData from a dict
payee_response_data_from_dict = PayeeResponseData.from_dict(payee_response_data_dict)

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