MSMemberHistoryPagination
| Name |
Type |
Description |
Notes |
| results |
object |
Stores the results as an array |
|
| length |
object |
Denotes the length of the results array |
|
| total |
object |
Denotes the total number of records present in the database |
|
from wallet.models.ms_member_history_pagination import MSMemberHistoryPagination
# TODO update the JSON string below
json = "{}"
# create an instance of MSMemberHistoryPagination from a JSON string
ms_member_history_pagination_instance = MSMemberHistoryPagination.from_json(json)
# print the JSON string representation of the object
print MSMemberHistoryPagination.to_json()
# convert the object into a dict
ms_member_history_pagination_dict = ms_member_history_pagination_instance.to_dict()
# create an instance of MSMemberHistoryPagination from a dict
ms_member_history_pagination_form_dict = ms_member_history_pagination.from_dict(ms_member_history_pagination_dict)
[Back to Model list] [Back to API list] [Back to README]