Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.34 KB

File metadata and controls

34 lines (25 loc) · 1.34 KB

ViewsMemberSummary

Properties

Name Type Description Notes
links Dict[str, ViewsLink] 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.views_member_summary import ViewsMemberSummary

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

# convert the object into a dict
views_member_summary_dict = views_member_summary_instance.to_dict()
# create an instance of ViewsMemberSummary from a dict
views_member_summary_from_dict = ViewsMemberSummary.from_dict(views_member_summary_dict)

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