Update of a classroom
Name | Type | Description | Notes |
---|---|---|---|
name | str | The name of the class | [optional] |
section | str | The section of the class | [optional] |
level | ClassGradeLevel | [optional] | |
skills_focused | List[str] | Specific skills that will be focused in classroom | [optional] |
size | float | Number of students in the classroom | [optional] |
from flat_api.models.class_update import ClassUpdate
# TODO update the JSON string below
json = "{}"
# create an instance of ClassUpdate from a JSON string
class_update_instance = ClassUpdate.from_json(json)
# print the JSON string representation of the object
print ClassUpdate.to_json()
# convert the object into a dict
class_update_dict = class_update_instance.to_dict()
# create an instance of ClassUpdate from a dict
class_update_form_dict = class_update.from_dict(class_update_dict)