Represents the script public key.
| 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. |
from cryptoapis.models.list_confirmed_transactions_by_address_ribsb_vout_inner_script_pub_key import ListConfirmedTransactionsByAddressRIBSBVoutInnerScriptPubKey
# TODO update the JSON string below
json = "{}"
# create an instance of ListConfirmedTransactionsByAddressRIBSBVoutInnerScriptPubKey from a JSON string
list_confirmed_transactions_by_address_ribsb_vout_inner_script_pub_key_instance = ListConfirmedTransactionsByAddressRIBSBVoutInnerScriptPubKey.from_json(json)
# print the JSON string representation of the object
print ListConfirmedTransactionsByAddressRIBSBVoutInnerScriptPubKey.to_json()
# convert the object into a dict
list_confirmed_transactions_by_address_ribsb_vout_inner_script_pub_key_dict = list_confirmed_transactions_by_address_ribsb_vout_inner_script_pub_key_instance.to_dict()
# create an instance of ListConfirmedTransactionsByAddressRIBSBVoutInnerScriptPubKey from a dict
list_confirmed_transactions_by_address_ribsb_vout_inner_script_pub_key_form_dict = list_confirmed_transactions_by_address_ribsb_vout_inner_script_pub_key.from_dict(list_confirmed_transactions_by_address_ribsb_vout_inner_script_pub_key_dict)