Appearance
StudyProgress
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| total | int | ||
| completed | int | ||
| failed | int |
Example
python
from syntheticusers.models.study_progress import StudyProgress
# TODO update the JSON string below
json = "{}"
# create an instance of StudyProgress from a JSON string
study_progress_instance = StudyProgress.from_json(json)
# print the JSON string representation of the object
print(StudyProgress.to_json())
# convert the object into a dict
study_progress_dict = study_progress_instance.to_dict()
# create an instance of StudyProgress from a dict
study_progress_from_dict = StudyProgress.from_dict(study_progress_dict)