You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unique identifier of an asset (0 for BTC, 60 for ETH, etc.)
[optional]
customer_ref_id
str
customerRefId
[optional]
address_format
str
addressFormat
[optional]
legacy_address
str
legacyAddress
[optional]
payment_address
str
paymentAddress
[optional]
user_defined
bool
userDefined
[optional]
state
str
state
[optional]
Example
fromfireblocks.models.embedded_wallet_address_detailsimportEmbeddedWalletAddressDetails# TODO update the JSON string belowjson="{}"# create an instance of EmbeddedWalletAddressDetails from a JSON stringembedded_wallet_address_details_instance=EmbeddedWalletAddressDetails.from_json(json)
# print the JSON string representation of the objectprint(EmbeddedWalletAddressDetails.to_json())
# convert the object into a dictembedded_wallet_address_details_dict=embedded_wallet_address_details_instance.to_dict()
# create an instance of EmbeddedWalletAddressDetails from a dictembedded_wallet_address_details_from_dict=EmbeddedWalletAddressDetails.from_dict(embedded_wallet_address_details_dict)