| Name |
Type |
Description |
Notes |
| id |
str |
id of position to withdraw |
|
| 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 |
Amount of tokens to withdraw. Only supported for ETH compounding validators (EIP-7251/Pectra) and Cosmos chains to enable partial withdrawals. For ETH compounding validators, the remaining balance must be at least 32 ETH after withdrawal. For other chains, this field is ignored and the entire available amount will be withdrawn. If not provided, the entire available amount will be withdrawn. |
[optional] |
from fireblocks.models.withdraw_request import WithdrawRequest
# TODO update the JSON string below
json = "{}"
# create an instance of WithdrawRequest from a JSON string
withdraw_request_instance = WithdrawRequest.from_json(json)
# print the JSON string representation of the object
print(WithdrawRequest.to_json())
# convert the object into a dict
withdraw_request_dict = withdraw_request_instance.to_dict()
# create an instance of WithdrawRequest from a dict
withdraw_request_from_dict = WithdrawRequest.from_dict(withdraw_request_dict)
[Back to Model list] [Back to API list] [Back to README]