Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 891 Bytes

RewardsInfo.md

File metadata and controls

29 lines (20 loc) · 891 Bytes

RewardsInfo

Properties

Name Type Description Notes
pending_rewards str Amount that is pending for rewards [optional]

Example

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)

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