| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | The name of the payee. |
from ynab.models.post_payee import PostPayee
# TODO update the JSON string below
json = "{}"
# create an instance of PostPayee from a JSON string
post_payee_instance = PostPayee.from_json(json)
# print the JSON string representation of the object
print(PostPayee.to_json())
# convert the object into a dict
post_payee_dict = post_payee_instance.to_dict()
# create an instance of PostPayee from a dict
post_payee_from_dict = PostPayee.from_dict(post_payee_dict)