Submission

Submission

Represents a base submission on SMHW.


Constructor

new Submission(client, response)

Instantiate a Submission object.

Parameters:
Name Type Description
client Client

The client that is instantiating this objectg.

response Object

The data for the object.

Members

(private) _client :Client

The client that instantiated this object.

Type:
  • Client

assignment_type :String

The assignment type of the submission.

Type:
  • String

comment_ids :Array.<Number>

An array of IDs of comments posted to the submission.

Type:
  • Array.<Number>

created_at :Number

The timestamp of when the submission was created.

Type:
  • Number

event_ids :Array.<Number>

An array of IDs to events refering to the submission.

Type:
  • Array.<Number>

grade :String

The grade recieved for the event.

Type:
  • String

id :String

The ID of the submission.

Type:
  • String

status :String

The status of the submission.

Type:
  • String

student_avatar :String

The avatar URL of the student.

Type:
  • String

student_id :Number

The ID of the student.

Type:
  • Number

student_name :String

The name of the student.

Type:
  • String

updated_at :Number

The timestamp of when the submission was last updated.

Type:
  • Number

Methods

getEvents(idsopt) → {Promise.<Array.<SubmissionEvent>>}

Get submission events that refer to this submission.

Parameters:
Name Type Attributes Description
ids Array.<Number> <optional>

An array of IDs of submission events to retrieve.

Returns:
Type
Promise.<Array.<SubmissionEvent>>

getStudent() → {Promise.<Student>}

Get the student who submitted the flexible task submission.

Returns:
Type
Promise.<Student>