Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1014 Bytes

ExecuteActionResponse.md

File metadata and controls

29 lines (20 loc) · 1014 Bytes

ExecuteActionResponse

Properties

Name Type Description Notes
id str The unique identifier of the staking position

Example

from fireblocks.models.execute_action_response import ExecuteActionResponse

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

# convert the object into a dict
execute_action_response_dict = execute_action_response_instance.to_dict()
# create an instance of ExecuteActionResponse from a dict
execute_action_response_from_dict = ExecuteActionResponse.from_dict(execute_action_response_dict)

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