Skip to content
This repository was archived by the owner on Dec 1, 2025. It is now read-only.

Latest commit

 

History

History
28 lines (20 loc) · 1.24 KB

File metadata and controls

28 lines (20 loc) · 1.24 KB

ConvertBitcoinCashAddressRBDataItem

Properties

Name Type Description Notes
address str Represents the public address, which is a compressed and shortened form of a public key.

Example

from cryptoapis.models.convert_bitcoin_cash_address_rb_data_item import ConvertBitcoinCashAddressRBDataItem

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

# convert the object into a dict
convert_bitcoin_cash_address_rb_data_item_dict = convert_bitcoin_cash_address_rb_data_item_instance.to_dict()
# create an instance of ConvertBitcoinCashAddressRBDataItem from a dict
convert_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)

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