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

File metadata and controls

28 lines (20 loc) · 1.2 KB

DecodeRawTransactionHexRBDataItem

Properties

Name Type Description Notes
raw_transaction_hex str Represents the raw transaction Hex that has to be decoded.

Example

from cryptoapis.models.decode_raw_transaction_hex_rb_data_item import DecodeRawTransactionHexRBDataItem

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

# convert the object into a dict
decode_raw_transaction_hex_rb_data_item_dict = decode_raw_transaction_hex_rb_data_item_instance.to_dict()
# create an instance of DecodeRawTransactionHexRBDataItem from a dict
decode_raw_transaction_hex_rb_data_item_form_dict = decode_raw_transaction_hex_rb_data_item.from_dict(decode_raw_transaction_hex_rb_data_item_dict)

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