Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.51 KB

File metadata and controls

29 lines (22 loc) · 1.51 KB

ProjectMember

Properties

Name Type Description Notes
email str The email address of the project member. This property will only be populated if the viewer is an owner of the project.
name str
role Role

Example

from notehub_py.models.project_member import ProjectMember

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

# convert the object into a dict
project_member_dict = project_member_instance.to_dict()
# create an instance of ProjectMember from a dict
project_member_from_dict = ProjectMember.from_dict(project_member_dict)

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