Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.21 KB

LeanAbiFunction.md

File metadata and controls

32 lines (23 loc) · 1.21 KB

LeanAbiFunction

Properties

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]

Example

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)

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