classroom
v1
|
#include <submission_history.h>
Public Member Functions | |
SubmissionHistory (const Json::Value &storage) | |
SubmissionHistory (Json::Value *storage) | |
virtual | ~SubmissionHistory () |
const StringPiece | GetTypeName () const |
bool | has_grade_history () const |
void | clear_grade_history () |
const GradeHistory | get_grade_history () const |
GradeHistory | mutable_gradeHistory () |
bool | has_state_history () const |
void | clear_state_history () |
const StateHistory | get_state_history () const |
StateHistory | mutable_stateHistory () |
Static Public Member Functions | |
static SubmissionHistory * | New () |
The history of the submission. This currently includes state and grade histories.
|
explicit |
Standard constructor for an immutable data object instance.
[in] | storage | The underlying data storage for this instance. |
|
explicit |
Standard constructor for a mutable data object instance.
[in] | storage | The underlying data storage for this instance. |
|
virtual |
Standard destructor.
|
inline |
Clears the 'gradeHistory
' attribute.
|
inline |
Clears the 'stateHistory
' attribute.
const GradeHistory google_classroom_api::SubmissionHistory::get_grade_history | ( | ) | const |
Get a reference to the value of the 'gradeHistory
' attribute.
const StateHistory google_classroom_api::SubmissionHistory::get_state_history | ( | ) | const |
Get a reference to the value of the 'stateHistory
' attribute.
|
inline |
Returns a string denoting the type of this data object.
|
inline |
Determine if the 'gradeHistory
' attribute was set.
gradeHistory
' attribute was set.
|
inline |
Determine if the 'stateHistory
' attribute was set.
stateHistory
' attribute was set. GradeHistory google_classroom_api::SubmissionHistory::mutable_gradeHistory | ( | ) |
Gets a reference to a mutable value of the 'gradeHistory
' property.
The grade history information of the submission, if present.
StateHistory google_classroom_api::SubmissionHistory::mutable_stateHistory | ( | ) |
Gets a reference to a mutable value of the 'stateHistory
' property.
The state history information of the submission, if present.
|
static |
Creates a new default instance.