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. |
from fireblocks.models.delegation_summary_dto import DelegationSummaryDto
# TODO update the JSON string below
json = "{}"
# create an instance of DelegationSummaryDto from a JSON string
delegation_summary_dto_instance = DelegationSummaryDto.from_json(json)
# print the JSON string representation of the object
print(DelegationSummaryDto.to_json())
# convert the object into a dict
delegation_summary_dto_dict = delegation_summary_dto_instance.to_dict()
# create an instance of DelegationSummaryDto from a dict
delegation_summary_dto_from_dict = DelegationSummaryDto.from_dict(delegation_summary_dto_dict)