Name | Type | Description | Notes |
---|---|---|---|
page | int | [optional] | |
per_page | int | [optional] | |
total_entries | int | [optional] | |
total_pages | int | [optional] | |
members | List[MemberResponse] | [optional] |
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)