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
{{ message }}
This repository was archived by the owner on Dec 1, 2025. It is now read-only.
Represents a custom tag that customers can set up for their Wallets and addresses. E.g. custom label named "Special addresses".
Example
fromcryptoapis.models.generate_deposit_address_rb_data_itemimportGenerateDepositAddressRBDataItem# TODO update the JSON string belowjson="{}"# create an instance of GenerateDepositAddressRBDataItem from a JSON stringgenerate_deposit_address_rb_data_item_instance=GenerateDepositAddressRBDataItem.from_json(json)
# print the JSON string representation of the objectprintGenerateDepositAddressRBDataItem.to_json()
# convert the object into a dictgenerate_deposit_address_rb_data_item_dict=generate_deposit_address_rb_data_item_instance.to_dict()
# create an instance of GenerateDepositAddressRBDataItem from a dictgenerate_deposit_address_rb_data_item_form_dict=generate_deposit_address_rb_data_item.from_dict(generate_deposit_address_rb_data_item_dict)