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

Latest commit

 

History

History
33 lines (25 loc) · 2.03 KB

File metadata and controls

33 lines (25 loc) · 2.03 KB

GetTransactionDetailsByTransactionIDFromCallbackRIBSD2VoutInnerScriptPubKey

Represents the script public key.

Properties

Name Type Description Notes
addresses List[str]
asm str Represents the assembly of the script public key of the address.
hex str Represents the hex of the script public key of the address.
req_sigs int Represents the required signatures.
type str Represents the script type.

Example

from cryptoapis.models.get_transaction_details_by_transaction_id_from_callback_ribsd2_vout_inner_script_pub_key import GetTransactionDetailsByTransactionIDFromCallbackRIBSD2VoutInnerScriptPubKey

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

# convert the object into a dict
get_transaction_details_by_transaction_id_from_callback_ribsd2_vout_inner_script_pub_key_dict = get_transaction_details_by_transaction_id_from_callback_ribsd2_vout_inner_script_pub_key_instance.to_dict()
# create an instance of GetTransactionDetailsByTransactionIDFromCallbackRIBSD2VoutInnerScriptPubKey from a dict
get_transaction_details_by_transaction_id_from_callback_ribsd2_vout_inner_script_pub_key_form_dict = get_transaction_details_by_transaction_id_from_callback_ribsd2_vout_inner_script_pub_key.from_dict(get_transaction_details_by_transaction_id_from_callback_ribsd2_vout_inner_script_pub_key_dict)

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