Name | Type | Description | Notes |
---|---|---|---|
id | str | ||
type | PaymentAccountType |
from fireblocks.models.payment_account import PaymentAccount
# TODO update the JSON string below
json = "{}"
# create an instance of PaymentAccount from a JSON string
payment_account_instance = PaymentAccount.from_json(json)
# print the JSON string representation of the object
print(PaymentAccount.to_json())
# convert the object into a dict
payment_account_dict = payment_account_instance.to_dict()
# create an instance of PaymentAccount from a dict
payment_account_from_dict = PaymentAccount.from_dict(payment_account_dict)