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