Name | Type | Description | Notes |
---|---|---|---|
payees | List[Payee] | ||
server_knowledge | int | The knowledge of the server |
from ynab.models.payees_response_data import PayeesResponseData
# TODO update the JSON string below
json = "{}"
# create an instance of PayeesResponseData from a JSON string
payees_response_data_instance = PayeesResponseData.from_json(json)
# print the JSON string representation of the object
print(PayeesResponseData.to_json())
# convert the object into a dict
payees_response_data_dict = payees_response_data_instance.to_dict()
# create an instance of PayeesResponseData from a dict
payees_response_data_from_dict = PayeesResponseData.from_dict(payees_response_data_dict)