Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.13 KB

WriteAbiFunction.md

File metadata and controls

34 lines (25 loc) · 1.13 KB

WriteAbiFunction

Properties

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

Example

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)

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