Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.17 KB

ClassUpdate.md

File metadata and controls

34 lines (25 loc) · 1.17 KB

ClassUpdate

Update of a classroom

Properties

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]

Example

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)

[Back to Model list] [Back to API list] [Back to README]