Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.11 KB

File metadata and controls

31 lines (22 loc) · 1.11 KB

PaginatedWTMembers

Properties

Name Type Description Notes
results List[WTMember] 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.paginated_wt_members import PaginatedWTMembers

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

# convert the object into a dict
paginated_wt_members_dict = paginated_wt_members_instance.to_dict()
# create an instance of PaginatedWTMembers from a dict
paginated_wt_members_form_dict = paginated_wt_members.from_dict(paginated_wt_members_dict)

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