Class: Google::Apis::ClassroomV1::StudentSubmission

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/classroom_v1/classes.rb,
generated/google/apis/classroom_v1/representations.rb,
generated/google/apis/classroom_v1/representations.rb

Overview

Student submission for course work. StudentSubmission items are generated when a CourseWork item is created. StudentSubmissions that have never been accessed (i.e. with state = NEW) may not have a creation time or update time.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ StudentSubmission

Returns a new instance of StudentSubmission



530
531
532
# File 'generated/google/apis/classroom_v1/classes.rb', line 530

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

Absolute link to the submission in the Classroom web UI. Read-only. Corresponds to the JSON property alternateLink

Returns:

  • (String)


470
471
472
# File 'generated/google/apis/classroom_v1/classes.rb', line 470

def alternate_link
  @alternate_link
end

#assigned_gradeFloat

Optional grade. If unset, no grade was set. This must be a non-negative integer value. This may be modified only by course teachers. Corresponds to the JSON property assignedGrade

Returns:

  • (Float)


432
433
434
# File 'generated/google/apis/classroom_v1/classes.rb', line 432

def assigned_grade
  @assigned_grade
end

#assignment_submissionGoogle::Apis::ClassroomV1::AssignmentSubmission

Student work for an assignment. Corresponds to the JSON property assignmentSubmission



442
443
444
# File 'generated/google/apis/classroom_v1/classes.rb', line 442

def assignment_submission
  @assignment_submission
end

#associated_with_developerBoolean Also known as: associated_with_developer?

Whether this student submission is associated with the Developer Console project making the request. See google.classroom.Work.CreateCourseWork for more details. Read-only. Corresponds to the JSON property associatedWithDeveloper

Returns:

  • (Boolean)


451
452
453
# File 'generated/google/apis/classroom_v1/classes.rb', line 451

def associated_with_developer
  @associated_with_developer
end

#course_idString

Identifier of the course. Read-only. Corresponds to the JSON property courseId

Returns:

  • (String)


521
522
523
# File 'generated/google/apis/classroom_v1/classes.rb', line 521

def course_id
  @course_id
end

#course_work_idString

Identifier for the course work this corresponds to. Read-only. Corresponds to the JSON property courseWorkId

Returns:

  • (String)


515
516
517
# File 'generated/google/apis/classroom_v1/classes.rb', line 515

def course_work_id
  @course_work_id
end

#course_work_typeString

Type of course work this submission is for. Read-only. Corresponds to the JSON property courseWorkType

Returns:

  • (String)


490
491
492
# File 'generated/google/apis/classroom_v1/classes.rb', line 490

def course_work_type
  @course_work_type
end

#creation_timeString

Creation time of this submission. This may be unset if the student has not accessed this item. Read-only. Corresponds to the JSON property creationTime

Returns:

  • (String)


497
498
499
# File 'generated/google/apis/classroom_v1/classes.rb', line 497

def creation_time
  @creation_time
end

#draft_gradeFloat

Optional pending grade. If unset, no grade was set. This must be a non-negative integer value. This is only visible to and modifiable by course teachers. Corresponds to the JSON property draftGrade

Returns:

  • (Float)


484
485
486
# File 'generated/google/apis/classroom_v1/classes.rb', line 484

def draft_grade
  @draft_grade
end

#idString

Classroom-assigned Identifier for the student submission. This is unique among submissions for the relevant course work. Read-only. Corresponds to the JSON property id

Returns:

  • (String)


528
529
530
# File 'generated/google/apis/classroom_v1/classes.rb', line 528

def id
  @id
end

#lateBoolean Also known as: late?

Whether this submission is late. Read-only. Corresponds to the JSON property late

Returns:

  • (Boolean)


476
477
478
# File 'generated/google/apis/classroom_v1/classes.rb', line 476

def late
  @late
end

#multiple_choice_submissionGoogle::Apis::ClassroomV1::MultipleChoiceSubmission

Student work for a multiple-choice question. Corresponds to the JSON property multipleChoiceSubmission



437
438
439
# File 'generated/google/apis/classroom_v1/classes.rb', line 437

def multiple_choice_submission
  @multiple_choice_submission
end

#short_answer_submissionGoogle::Apis::ClassroomV1::ShortAnswerSubmission

Student work for a short answer question. Corresponds to the JSON property shortAnswerSubmission



457
458
459
# File 'generated/google/apis/classroom_v1/classes.rb', line 457

def short_answer_submission
  @short_answer_submission
end

#stateString

State of this submission. Read-only. Corresponds to the JSON property state

Returns:

  • (String)


503
504
505
# File 'generated/google/apis/classroom_v1/classes.rb', line 503

def state
  @state
end

#update_timeString

Last update time of this submission. This may be unset if the student has not accessed this item. Read-only. Corresponds to the JSON property updateTime

Returns:

  • (String)


464
465
466
# File 'generated/google/apis/classroom_v1/classes.rb', line 464

def update_time
  @update_time
end

#user_idString

Identifier for the student that owns this submission. Read-only. Corresponds to the JSON property userId

Returns:

  • (String)


509
510
511
# File 'generated/google/apis/classroom_v1/classes.rb', line 509

def user_id
  @user_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
# File 'generated/google/apis/classroom_v1/classes.rb', line 535

def update!(**args)
  @assigned_grade = args[:assigned_grade] if args.key?(:assigned_grade)
  @multiple_choice_submission = args[:multiple_choice_submission] if args.key?(:multiple_choice_submission)
  @assignment_submission = args[:assignment_submission] if args.key?(:assignment_submission)
  @associated_with_developer = args[:associated_with_developer] if args.key?(:associated_with_developer)
  @short_answer_submission = args[:short_answer_submission] if args.key?(:short_answer_submission)
  @update_time = args[:update_time] if args.key?(:update_time)
  @alternate_link = args[:alternate_link] if args.key?(:alternate_link)
  @late = args[:late] if args.key?(:late)
  @draft_grade = args[:draft_grade] if args.key?(:draft_grade)
  @course_work_type = args[:course_work_type] if args.key?(:course_work_type)
  @creation_time = args[:creation_time] if args.key?(:creation_time)
  @state = args[:state] if args.key?(:state)
  @user_id = args[:user_id] if args.key?(:user_id)
  @course_work_id = args[:course_work_id] if args.key?(:course_work_id)
  @course_id = args[:course_id] if args.key?(:course_id)
  @id = args[:id] if args.key?(:id)
end