Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.26 KB

File metadata and controls

34 lines (25 loc) · 1.26 KB

MemberSummary

Properties

Name Type Description Notes
links Dict[str, Link] The location and content type of related resources
id str The member's ID
first_name str The member's first name [optional]
last_name str The member's last name [optional]
role str The member's base role. If the member has no additional roles, this role will be in effect.
email str The member's email address

Example

from launchdarkly_api.models.member_summary import MemberSummary

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

# convert the object into a dict
member_summary_dict = member_summary_instance.to_dict()
# create an instance of MemberSummary from a dict
member_summary_from_dict = MemberSummary.from_dict(member_summary_dict)

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