Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.06 KB

PayeeLocation.md

File metadata and controls

33 lines (24 loc) · 1.06 KB

PayeeLocation

Properties

Name Type Description Notes
id str
payee_id str
latitude str
longitude str
deleted bool Whether or not the payee location has been deleted. Deleted payee locations will only be included in delta requests.

Example

from ynab.models.payee_location import PayeeLocation

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

# convert the object into a dict
payee_location_dict = payee_location_instance.to_dict()
# create an instance of PayeeLocation from a dict
payee_location_from_dict = PayeeLocation.from_dict(payee_location_dict)

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