Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 907 Bytes

PayeeAccount.md

File metadata and controls

30 lines (21 loc) · 907 Bytes

PayeeAccount

Properties

Name Type Description Notes
id str
type PayeeAccountType

Example

from fireblocks.models.payee_account import PayeeAccount

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

# convert the object into a dict
payee_account_dict = payee_account_instance.to_dict()
# create an instance of PayeeAccount from a dict
payee_account_from_dict = PayeeAccount.from_dict(payee_account_dict)

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