Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 936 Bytes

PatchPayeeWrapper.md

File metadata and controls

29 lines (20 loc) · 936 Bytes

PatchPayeeWrapper

Properties

Name Type Description Notes
payee SavePayee

Example

from ynab.models.patch_payee_wrapper import PatchPayeeWrapper

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

# convert the object into a dict
patch_payee_wrapper_dict = patch_payee_wrapper_instance.to_dict()
# create an instance of PatchPayeeWrapper from a dict
patch_payee_wrapper_from_dict = PatchPayeeWrapper.from_dict(patch_payee_wrapper_dict)

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