PrevUpHomeNext

StudySession

struct StudySession
{
    string name;
    string faculty_list;
    bool   is_default;
};

Represents a session of study.

string name;

The name of the session of study, e.g. "2011-2012 Fall/Winter".

string faculty_list;

A comma-separated list of faculties for which course data is available for this study session.

bool is_default;

Whether or not this study session is the default study session. This property is specified in the sessions.txt data file (see Data Files Used by the API).


PrevUpHomeNext