Represents the script public key.
| Name | Type | Description | Notes |
|---|---|---|---|
| address | str | Represents the addresses which send the amount. | |
| asm | str | Represents the assembly of the script public key of the address. | [optional] |
| hex | str | Represents the hex of the script public key of the address. | [optional] |
| type | str | Represents the script type | [optional] |
from cryptoapis.models.decode_raw_transaction_hex_risd2_vout_inner_script_pub_key import DecodeRawTransactionHexRISD2VoutInnerScriptPubKey
# TODO update the JSON string below
json = "{}"
# create an instance of DecodeRawTransactionHexRISD2VoutInnerScriptPubKey from a JSON string
decode_raw_transaction_hex_risd2_vout_inner_script_pub_key_instance = DecodeRawTransactionHexRISD2VoutInnerScriptPubKey.from_json(json)
# print the JSON string representation of the object
print DecodeRawTransactionHexRISD2VoutInnerScriptPubKey.to_json()
# convert the object into a dict
decode_raw_transaction_hex_risd2_vout_inner_script_pub_key_dict = decode_raw_transaction_hex_risd2_vout_inner_script_pub_key_instance.to_dict()
# create an instance of DecodeRawTransactionHexRISD2VoutInnerScriptPubKey from a dict
decode_raw_transaction_hex_risd2_vout_inner_script_pub_key_form_dict = decode_raw_transaction_hex_risd2_vout_inner_script_pub_key.from_dict(decode_raw_transaction_hex_risd2_vout_inner_script_pub_key_dict)