PrevUpHomeNext

CourseBlocks

struct CourseBlocks
{
    string        activity_code;
    string        section_code;
    string        instructor;
    string        instructor_short;
    vector<Block> blocks;
};

This structure represents all the blocks of time during which one meeting section of a course meets.

string activity_code;

The course's activity code.

string section_code;

The meeting section's section code.

string instructor;

The instructor(s) for this meeting section. May be empty. Includes both first and last name if available.

string instructor_short;

The instructor(s) for this meeting section. May be empty. Last name only to keep the string short.

vector<Block> blocks;

The blocks of time during which this meeting section meets.


PrevUpHomeNext