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

File metadata and controls

28 lines (20 loc) · 1.05 KB

GetRawTransactionDataRI

Properties

Name Type Description Notes
transaction_hex str Represents the raw transaction data in hexadecimal format.

Example

from cryptoapis.models.get_raw_transaction_data_ri import GetRawTransactionDataRI

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

# convert the object into a dict
get_raw_transaction_data_ri_dict = get_raw_transaction_data_ri_instance.to_dict()
# create an instance of GetRawTransactionDataRI from a dict
get_raw_transaction_data_ri_form_dict = get_raw_transaction_data_ri.from_dict(get_raw_transaction_data_ri_dict)

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