Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.33 KB

ExternalWalletAsset.md

File metadata and controls

36 lines (27 loc) · 1.33 KB

ExternalWalletAsset

Properties

Name Type Description Notes
id str [optional]
status ConfigChangeRequestStatus [optional]
address str [optional]
balance str [optional]
locked_amount str [optional]
tag str [optional]
activation_time str [optional]
additional_info List[WalletAssetAdditionalInfo] [optional]

Example

from fireblocks.models.external_wallet_asset import ExternalWalletAsset

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

# convert the object into a dict
external_wallet_asset_dict = external_wallet_asset_instance.to_dict()
# create an instance of ExternalWalletAsset from a dict
external_wallet_asset_from_dict = ExternalWalletAsset.from_dict(external_wallet_asset_dict)

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