| Name | Type | Description | Notes |
|---|---|---|---|
| data | List[Stakings] | [optional] | |
| pagination | Pagination | [optional] |
from cobo_waas2.models.list_stakings200_response import ListStakings200Response
# TODO update the JSON string below
json = "{}"
# create an instance of ListStakings200Response from a JSON string
list_stakings200_response_instance = ListStakings200Response.from_json(json)
# print the JSON string representation of the object
print(ListStakings200Response.to_json())
# convert the object into a dict
list_stakings200_response_dict = list_stakings200_response_instance.to_dict()
# create an instance of ListStakings200Response from a dict
list_stakings200_response_from_dict = ListStakings200Response.from_dict(list_stakings200_response_dict)