Course()

Represents a single course. All courses belong to a Term.

new Course()

Properties:
Name Type Description
name string
courseNumber string
teacher string
roomName string
_id string

unique id for the course

grades object

grades for the course

Properties
Name Type Description
percent number
pointsEarned number
score string

letter grade

totalPoints number
placement object

when the class takes place

Properties
Name Type Description
startTime string
endTime string
periodName string

the name of the period

periodSeq string

the order of when the period takes place in the day

Example
{
 "name": "2 English II",
 "courseNumber": "000703",
 "teacher": "John Doe",
 "roomName": "205B",
 "_id": "6278079",
 "grades": {
   "score": "A-",
   "percent": 89.76,
   "totalPoints": 227,
   "pointsEarned": 207
 },
 "placement": {
   "periodName": "6",
   "periodSeq": 7,
   "startTime": "14:00:00",
   "endTime": "15:00:00"
 }
}