Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.1 KB

MemberListObjectResponse.md

File metadata and controls

29 lines (21 loc) · 1.1 KB

MemberListObjectResponse

Properties

Name Type Description Notes
member_list MemberListObject [optional]
errors Dict[str, str] [optional]

Example

from sparkfly_client.models.member_list_object_response import MemberListObjectResponse

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

# convert the object into a dict
member_list_object_response_dict = member_list_object_response_instance.to_dict()
# create an instance of MemberListObjectResponse from a dict
member_list_object_response_form_dict = member_list_object_response.from_dict(member_list_object_response_dict)

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