Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.08 KB

File metadata and controls

33 lines (24 loc) · 1.08 KB

ViewsMaintainerMember

Properties

Name Type Description Notes
id str
email str
role str
first_name str [optional]
last_name str [optional]

Example

from launchdarkly_api.models.views_maintainer_member import ViewsMaintainerMember

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

# convert the object into a dict
views_maintainer_member_dict = views_maintainer_member_instance.to_dict()
# create an instance of ViewsMaintainerMember from a dict
views_maintainer_member_from_dict = ViewsMaintainerMember.from_dict(views_maintainer_member_dict)

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