Name | Type | Description | Notes |
---|---|---|---|
name | str | The function name | [optional] |
inputs | List[ParameterWithValue] | The function inputs | |
outputs | List[ParameterWithValue] | The function outputs | [optional] |
state_mutability | str | The state mutability of the function (e.g., view, pure, nonpayable, payable) | [optional] |
from fireblocks.models.lean_abi_function import LeanAbiFunction
# TODO update the JSON string below
json = "{}"
# create an instance of LeanAbiFunction from a JSON string
lean_abi_function_instance = LeanAbiFunction.from_json(json)
# print the JSON string representation of the object
print(LeanAbiFunction.to_json())
# convert the object into a dict
lean_abi_function_dict = lean_abi_function_instance.to_dict()
# create an instance of LeanAbiFunction from a dict
lean_abi_function_from_dict = LeanAbiFunction.from_dict(lean_abi_function_dict)