Appearance
ProjectUserRole
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| user_id | str | [optional] | |
| str | [optional] | ||
| role | str | ||
| status | str |
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)