Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1019 Bytes

File metadata and controls

29 lines (20 loc) · 1019 Bytes

PayeeLocationResponse

Properties

Name Type Description Notes
data PayeeLocationResponseData

Example

from ynab.models.payee_location_response import PayeeLocationResponse

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

# convert the object into a dict
payee_location_response_dict = payee_location_response_instance.to_dict()
# create an instance of PayeeLocationResponse from a dict
payee_location_response_from_dict = PayeeLocationResponse.from_dict(payee_location_response_dict)

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