Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 877 Bytes

MemberInfo.md

File metadata and controls

29 lines (21 loc) · 877 Bytes

MemberInfo

Properties

Name Type Description Notes
id str [optional]
identifier str [optional]

Example

from sparkfly_client.models.member_info import MemberInfo

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

# convert the object into a dict
member_info_dict = member_info_instance.to_dict()
# create an instance of MemberInfo from a dict
member_info_form_dict = member_info.from_dict(member_info_dict)

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