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 raw transaction Hex that has to be decoded.
Example
fromcryptoapis.models.decode_raw_transaction_hex_rb_data_itemimportDecodeRawTransactionHexRBDataItem# TODO update the JSON string belowjson="{}"# create an instance of DecodeRawTransactionHexRBDataItem from a JSON stringdecode_raw_transaction_hex_rb_data_item_instance=DecodeRawTransactionHexRBDataItem.from_json(json)
# print the JSON string representation of the objectprintDecodeRawTransactionHexRBDataItem.to_json()
# convert the object into a dictdecode_raw_transaction_hex_rb_data_item_dict=decode_raw_transaction_hex_rb_data_item_instance.to_dict()
# create an instance of DecodeRawTransactionHexRBDataItem from a dictdecode_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)