Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.27 KB

File metadata and controls

31 lines (22 loc) · 1.27 KB

ContractDataDecodeResponseParams

Properties

Name Type Description Notes
name str The name of the contract function.
signature str The signature of the contract function.
args List[ParameterWithValue]

Example

from fireblocks.models.contract_data_decode_response_params import ContractDataDecodeResponseParams

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

# convert the object into a dict
contract_data_decode_response_params_dict = contract_data_decode_response_params_instance.to_dict()
# create an instance of ContractDataDecodeResponseParams from a dict
contract_data_decode_response_params_from_dict = ContractDataDecodeResponseParams.from_dict(contract_data_decode_response_params_dict)

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