Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.01 KB

PayeeLocationsResponse.md

File metadata and controls

29 lines (20 loc) · 1.01 KB

PayeeLocationsResponse

Properties

Name Type Description Notes
data PayeeLocationsResponseData

Example

from ynab.models.payee_locations_response import PayeeLocationsResponse

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

# convert the object into a dict
payee_locations_response_dict = payee_locations_response_instance.to_dict()
# create an instance of PayeeLocationsResponse from a dict
payee_locations_response_from_dict = PayeeLocationsResponse.from_dict(payee_locations_response_dict)

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