Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.06 KB

PayeeLocationsResponseData.md

File metadata and controls

29 lines (20 loc) · 1.06 KB

PayeeLocationsResponseData

Properties

Name Type Description Notes
payee_locations List[PayeeLocation]

Example

from ynab.models.payee_locations_response_data import PayeeLocationsResponseData

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

# convert the object into a dict
payee_locations_response_data_dict = payee_locations_response_data_instance.to_dict()
# create an instance of PayeeLocationsResponseData from a dict
payee_locations_response_data_from_dict = PayeeLocationsResponseData.from_dict(payee_locations_response_data_dict)

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