Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.35 KB

MSMembershipTierHistoryPagination.md

File metadata and controls

31 lines (22 loc) · 1.35 KB

MSMembershipTierHistoryPagination

Properties

Name Type Description Notes
results List[MSMembershipTierHistory] Stores the results as an array
length int Denotes the length of the results array
total int Denotes the total number of records present in the database

Example

from wallet.models.ms_membership_tier_history_pagination import MSMembershipTierHistoryPagination

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

# convert the object into a dict
ms_membership_tier_history_pagination_dict = ms_membership_tier_history_pagination_instance.to_dict()
# create an instance of MSMembershipTierHistoryPagination from a dict
ms_membership_tier_history_pagination_form_dict = ms_membership_tier_history_pagination.from_dict(ms_membership_tier_history_pagination_dict)

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