Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.06 KB

FiatAccount.md

File metadata and controls

33 lines (24 loc) · 1.06 KB

FiatAccount

Properties

Name Type Description Notes
id str [optional]
type FiatAccountType [optional]
name str Display name of the fiat account [optional]
address str [optional]
assets List[FiatAsset] [optional]

Example

from fireblocks.models.fiat_account import FiatAccount

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

# convert the object into a dict
fiat_account_dict = fiat_account_instance.to_dict()
# create an instance of FiatAccount from a dict
fiat_account_from_dict = FiatAccount.from_dict(fiat_account_dict)

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