Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.12 KB

ReadAbiFunction.md

File metadata and controls

34 lines (25 loc) · 1.12 KB

ReadAbiFunction

Properties

Name Type Description Notes
state_mutability str
outputs List[Parameter] [optional]
name str [optional]
type str
inputs List[ParameterWithValue]
description str [optional]

Example

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)

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