Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.41 KB

UnstakeRequest.md

File metadata and controls

33 lines (24 loc) · 1.41 KB

UnstakeRequest

Properties

Name Type Description Notes
id str id of position to unstake
fee str Represents the fee for a transaction, which can be specified as a percentage value. Only one of fee/feeLevel is required. [optional]
fee_level FeeLevel [optional]
tx_note str The note to associate with the transactions. [optional]
amount str The number of tokens to unstake. This optional field is applicable only for liquid staking and allows for a partial unstake of the position. If not provided, the entire position will be unstaked by default. [optional]

Example

from fireblocks.models.unstake_request import UnstakeRequest

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

# convert the object into a dict
unstake_request_dict = unstake_request_instance.to_dict()
# create an instance of UnstakeRequest from a dict
unstake_request_from_dict = UnstakeRequest.from_dict(unstake_request_dict)

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