Appearance
Project
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| name | str | [optional] | |
| description | str | [optional] | |
| type | str | [optional] [default to 'legacy'] | |
| owner_id | str | [optional] | |
| users | List[ProjectUserRole] | [optional] | |
| created_at | datetime | ||
| created_by | str | [optional] | |
| number_of_studies | int | [optional] | |
| team_members_size | int | [optional] | |
| workspace_id | str | [optional] |
Example
python
from syntheticusers.models.project import Project
# TODO update the JSON string below
json = "{}"
# create an instance of Project from a JSON string
project_instance = Project.from_json(json)
# print the JSON string representation of the object
print(Project.to_json())
# convert the object into a dict
project_dict = project_instance.to_dict()
# create an instance of Project from a dict
project_from_dict = Project.from_dict(project_dict)