Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 993 Bytes

ReadCallFunctionDto.md

File metadata and controls

29 lines (20 loc) · 993 Bytes

ReadCallFunctionDto

Properties

Name Type Description Notes
abi_function ReadAbiFunction

Example

from fireblocks.models.read_call_function_dto import ReadCallFunctionDto

# TODO update the JSON string below
json = "{}"
# create an instance of ReadCallFunctionDto from a JSON string
read_call_function_dto_instance = ReadCallFunctionDto.from_json(json)
# print the JSON string representation of the object
print(ReadCallFunctionDto.to_json())

# convert the object into a dict
read_call_function_dto_dict = read_call_function_dto_instance.to_dict()
# create an instance of ReadCallFunctionDto from a dict
read_call_function_dto_from_dict = ReadCallFunctionDto.from_dict(read_call_function_dto_dict)

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