Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 904 Bytes

StakeResponse.md

File metadata and controls

29 lines (20 loc) · 904 Bytes

StakeResponse

Properties

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

Example

from fireblocks.models.stake_response import StakeResponse

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

# convert the object into a dict
stake_response_dict = stake_response_instance.to_dict()
# create an instance of StakeResponse from a dict
stake_response_from_dict = StakeResponse.from_dict(stake_response_dict)

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