Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.13 KB

MemberListResponse.md

File metadata and controls

32 lines (24 loc) · 1.13 KB

MemberListResponse

Properties

Name Type Description Notes
page int [optional]
per_page int [optional]
total_entries int [optional]
total_pages int [optional]
members List[MemberResponse] [optional]

Example

from sparkfly_client.models.member_list_response import MemberListResponse

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

# convert the object into a dict
member_list_response_dict = member_list_response_instance.to_dict()
# create an instance of MemberListResponse from a dict
member_list_response_form_dict = member_list_response.from_dict(member_list_response_dict)

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