Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.05 KB

WriteCallFunctionResponseDto.md

File metadata and controls

29 lines (20 loc) · 1.05 KB

WriteCallFunctionResponseDto

Properties

Name Type Description Notes
tx_id str

Example

from fireblocks.models.write_call_function_response_dto import WriteCallFunctionResponseDto

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

# convert the object into a dict
write_call_function_response_dto_dict = write_call_function_response_dto_instance.to_dict()
# create an instance of WriteCallFunctionResponseDto from a dict
write_call_function_response_dto_from_dict = WriteCallFunctionResponseDto.from_dict(write_call_function_response_dto_dict)

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