def __to_json__(self) -> t.MutableMapping[str, t.Any]:
"""Creates a JSON serializable representation of this object.
"""
return {
'name': self.name,
'course': self.course,
'id': self.id,
}