Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.66 KB

DelegationSummary.md

File metadata and controls

32 lines (23 loc) · 1.66 KB

DelegationSummary

Properties

Name Type Description Notes
active List[AmountAndChainDescriptor] An array of objects containing chain descriptors and associated amounts, representing active positions.
inactive List[AmountAndChainDescriptor] An array of objects containing chain descriptors and associated amounts, representing inactive positions.
rewards_amount List[AmountAndChainDescriptor] An array of objects containing chain descriptors and associated amounts, representing rewards positions.
total_staked List[AmountAndChainDescriptor] An array of objects with chain descriptors and total staked amounts, representing the combined staked totals of active and inactive positions.

Example

from fireblocks.models.delegation_summary import DelegationSummary

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

# convert the object into a dict
delegation_summary_dict = delegation_summary_instance.to_dict()
# create an instance of DelegationSummary from a dict
delegation_summary_from_dict = DelegationSummary.from_dict(delegation_summary_dict)

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