Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.1 KB

MemberListList.md

File metadata and controls

32 lines (24 loc) · 1.1 KB

MemberListList

Properties

Name Type Description Notes
page int [optional]
per_page int [optional]
total_entries int [optional]
total_pages int [optional]
member_lists List[MemberListObjectResponse] [optional]

Example

from sparkfly_client.models.member_list_list import MemberListList

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

# convert the object into a dict
member_list_list_dict = member_list_list_instance.to_dict()
# create an instance of MemberListList from a dict
member_list_list_form_dict = member_list_list.from_dict(member_list_list_dict)

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