Class: Google::Apis::ClassroomV1::Teacher
- Inherits:
-
Object
- Object
- Google::Apis::ClassroomV1::Teacher
- Defined in:
- generated/google/apis/classroom_v1/classes.rb,
generated/google/apis/classroom_v1/representations.rb,
generated/google/apis/classroom_v1/representations.rb
Overview
Teacher of a course.
Instance Attribute Summary collapse
-
#course_id ⇒ String
Identifier of the course.
-
#profile ⇒ Google::Apis::ClassroomV1::UserProfile
Global information for a user.
-
#user_id ⇒ String
Identifier of the user.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Teacher
constructor
A new instance of Teacher.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ Teacher
Returns a new instance of Teacher.
757 758 759 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 757 def initialize(**args) update!(**args) end |
Instance Attribute Details
#course_id ⇒ String
Identifier of the course. Read-only.
Corresponds to the JSON property courseId
742 743 744 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 742 def course_id @course_id end |
#profile ⇒ Google::Apis::ClassroomV1::UserProfile
Global information for a user.
Corresponds to the JSON property profile
755 756 757 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 755 def profile @profile end |
#user_id ⇒ String
Identifier of the user. When specified as a parameter of a request, this
identifier can be one of the following: * the numeric identifier for the user *
the email address of the user * the string literal "me"
, indicating the
requesting user
Corresponds to the JSON property userId
750 751 752 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 750 def user_id @user_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
762 763 764 765 766 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 762 def update!(**args) @course_id = args[:course_id] if args.key?(:course_id) @user_id = args[:user_id] if args.key?(:user_id) @profile = args[:profile] if args.key?(:profile) end |