Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 956 Bytes

MemberResponse.md

File metadata and controls

29 lines (21 loc) · 956 Bytes

MemberResponse

Properties

Name Type Description Notes
member Member [optional]
errors Dict[str, str] [optional]

Example

from sparkfly_client.models.member_response import MemberResponse

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

# convert the object into a dict
member_response_dict = member_response_instance.to_dict()
# create an instance of MemberResponse from a dict
member_response_form_dict = member_response.from_dict(member_response_dict)

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