Name | Type | Description | Notes |
---|---|---|---|
pending_rewards | str | Amount that is pending for rewards | [optional] |
from fireblocks.models.rewards_info import RewardsInfo
# TODO update the JSON string below
json = "{}"
# create an instance of RewardsInfo from a JSON string
rewards_info_instance = RewardsInfo.from_json(json)
# print the JSON string representation of the object
print(RewardsInfo.to_json())
# convert the object into a dict
rewards_info_dict = rewards_info_instance.to_dict()
# create an instance of RewardsInfo from a dict
rewards_info_from_dict = RewardsInfo.from_dict(rewards_info_dict)