Decoded data for CONTRACT_CALL operations. The Fireblocks development libraries are recommended for setting this parameter's value.
| Name | Type | Description | Notes |
|---|---|---|---|
| contract_name | str | [optional] | |
| function_calls | List[object] | [optional] |
from fireblocks.models.transaction_response_contract_call_decoded_data import TransactionResponseContractCallDecodedData
# TODO update the JSON string below
json = "{}"
# create an instance of TransactionResponseContractCallDecodedData from a JSON string
transaction_response_contract_call_decoded_data_instance = TransactionResponseContractCallDecodedData.from_json(json)
# print the JSON string representation of the object
print(TransactionResponseContractCallDecodedData.to_json())
# convert the object into a dict
transaction_response_contract_call_decoded_data_dict = transaction_response_contract_call_decoded_data_instance.to_dict()
# create an instance of TransactionResponseContractCallDecodedData from a dict
transaction_response_contract_call_decoded_data_from_dict = TransactionResponseContractCallDecodedData.from_dict(transaction_response_contract_call_decoded_data_dict)