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 the public address, which is a compressed and shortened form of a public key.
Example
fromcryptoapis.models.convert_bitcoin_cash_address_rb_data_itemimportConvertBitcoinCashAddressRBDataItem# TODO update the JSON string belowjson="{}"# create an instance of ConvertBitcoinCashAddressRBDataItem from a JSON stringconvert_bitcoin_cash_address_rb_data_item_instance=ConvertBitcoinCashAddressRBDataItem.from_json(json)
# print the JSON string representation of the objectprintConvertBitcoinCashAddressRBDataItem.to_json()
# convert the object into a dictconvert_bitcoin_cash_address_rb_data_item_dict=convert_bitcoin_cash_address_rb_data_item_instance.to_dict()
# create an instance of ConvertBitcoinCashAddressRBDataItem from a dictconvert_bitcoin_cash_address_rb_data_item_form_dict=convert_bitcoin_cash_address_rb_data_item.from_dict(convert_bitcoin_cash_address_rb_data_item_dict)