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.08 KB

File metadata and controls

28 lines (20 loc) · 1.08 KB

ConvertBitcoinCashAddressRI

Properties

Name Type Description Notes
converted_address str Represents the converted address

Example

from cryptoapis.models.convert_bitcoin_cash_address_ri import ConvertBitcoinCashAddressRI

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

# convert the object into a dict
convert_bitcoin_cash_address_ri_dict = convert_bitcoin_cash_address_ri_instance.to_dict()
# create an instance of ConvertBitcoinCashAddressRI from a dict
convert_bitcoin_cash_address_ri_form_dict = convert_bitcoin_cash_address_ri.from_dict(convert_bitcoin_cash_address_ri_dict)

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