Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 681 Bytes

File metadata and controls

26 lines (20 loc) · 681 Bytes

FlatApi::ClassCreation

Properties

Name Type Description Notes
name String The name of the new class
section String The section of the new 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::ClassCreation.new(
  name: null,
  section: null,
  level: null,
  skills_focused: null,
  size: null
)