Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 679 Bytes

ClassUpdate.md

File metadata and controls

26 lines (20 loc) · 679 Bytes

FlatApi::ClassUpdate

Properties

Name Type Description Notes
name String The name of the class [optional]
section String The section of the class [optional]
level ClassGradeLevel [optional]
skills_focused Array<String> Specific skills that will be focused in classroom [optional]
size Float Number of students in the classroom [optional]

Example

require 'flat_api'

instance = FlatApi::ClassUpdate.new(
  name: null,
  section: null,
  level: null,
  skills_focused: null,
  size: null
)