Appearance
Suggestion
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| subplan_id | str | ||
| study_id | str | [optional] | |
| type | str | ||
| status | str | ||
| data | Dict[str, object] | ||
| quantity | int | ||
| created_at | datetime | ||
| files | List[str] | [optional] |
Example
python
from syntheticusers.models.suggestion import Suggestion
# TODO update the JSON string below
json = "{}"
# create an instance of Suggestion from a JSON string
suggestion_instance = Suggestion.from_json(json)
# print the JSON string representation of the object
print(Suggestion.to_json())
# convert the object into a dict
suggestion_dict = suggestion_instance.to_dict()
# create an instance of Suggestion from a dict
suggestion_from_dict = Suggestion.from_dict(suggestion_dict)