Name |
Type |
Description |
Notes |
id |
str |
The unique identifier of the new staking position |
|
from fireblocks.models.split_response import SplitResponse
# TODO update the JSON string below
json = "{}"
# create an instance of SplitResponse from a JSON string
split_response_instance = SplitResponse.from_json(json)
# print the JSON string representation of the object
print(SplitResponse.to_json())
# convert the object into a dict
split_response_dict = split_response_instance.to_dict()
# create an instance of SplitResponse from a dict
split_response_from_dict = SplitResponse.from_dict(split_response_dict)
[Back to Model list] [Back to API list] [Back to README]