Skip to content

ProjectUserRole

Properties

NameTypeDescriptionNotes
user_idstr[optional]
emailstr[optional]
rolestr
statusstr

Example

python
from syntheticusers.models.project_user_role import ProjectUserRole

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

# convert the object into a dict
project_user_role_dict = project_user_role_instance.to_dict()
# create an instance of ProjectUserRole from a dict
project_user_role_from_dict = ProjectUserRole.from_dict(project_user_role_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.