Skip to content

Commit

Permalink
staking-sdk: add amount prop to unstakeDto
Browse files Browse the repository at this point in the history
  • Loading branch information
Yahav Amar committed Dec 17, 2024
1 parent 7c38759 commit 1eaff7f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fireblocks_sdk/api_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -687,8 +687,9 @@ def to_dict(self):


class UnstakeRequestDto:
def __init__(self, id: str, fee: str = None, fee_level: str = None, tx_note: str = None):
def __init__(self, id: str, amount: str = None, fee: str = None, fee_level: str = None, tx_note: str = None):
self.id = id
self.amount = amount
self.fee = fee
self.fee_level = fee_level
self.tx_note = tx_note
Expand Down

0 comments on commit 1eaff7f

Please sign in to comment.