Skip to content

Suggestion

Properties

NameTypeDescriptionNotes
idstr
subplan_idstr
study_idstr[optional]
typestr
statusstr
dataDict[str, object]
quantityint
created_atdatetime
filesList[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)

[Back to API list] [Back to SDK]

Released under the MIT License.