Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 937 Bytes

PaymentAccount.md

File metadata and controls

30 lines (21 loc) · 937 Bytes

PaymentAccount

Properties

Name Type Description Notes
id str
type PaymentAccountType

Example

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)

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