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) · 1.94 KB

File metadata and controls

33 lines (25 loc) · 1.94 KB

GetWalletTransactionDetailsByTransactionIDRIBSBVoutInnerScriptPubKey

Object representation of the script

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. [optional]
type str Represents the script type.

Example

from cryptoapis.models.get_wallet_transaction_details_by_transaction_idribsb_vout_inner_script_pub_key import GetWalletTransactionDetailsByTransactionIDRIBSBVoutInnerScriptPubKey

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

# convert the object into a dict
get_wallet_transaction_details_by_transaction_idribsb_vout_inner_script_pub_key_dict = get_wallet_transaction_details_by_transaction_idribsb_vout_inner_script_pub_key_instance.to_dict()
# create an instance of GetWalletTransactionDetailsByTransactionIDRIBSBVoutInnerScriptPubKey from a dict
get_wallet_transaction_details_by_transaction_idribsb_vout_inner_script_pub_key_form_dict = get_wallet_transaction_details_by_transaction_idribsb_vout_inner_script_pub_key.from_dict(get_wallet_transaction_details_by_transaction_idribsb_vout_inner_script_pub_key_dict)

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