Skip to content

StudyProgress

Properties

NameTypeDescriptionNotes
totalint
completedint
failedint

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)

[Back to API list] [Back to SDK]

Released under the MIT License.