Name | Type | Description | Notes |
---|---|---|---|
state_mutability | str | ||
outputs | List[Parameter] | [optional] | |
type | str | ||
name | str | [optional] | |
inputs | List[ParameterWithValue] | ||
description | str | [optional] |
from fireblocks.models.write_abi_function import WriteAbiFunction
# TODO update the JSON string below
json = "{}"
# create an instance of WriteAbiFunction from a JSON string
write_abi_function_instance = WriteAbiFunction.from_json(json)
# print the JSON string representation of the object
print(WriteAbiFunction.to_json())
# convert the object into a dict
write_abi_function_dict = write_abi_function_instance.to_dict()
# create an instance of WriteAbiFunction from a dict
write_abi_function_from_dict = WriteAbiFunction.from_dict(write_abi_function_dict)