Class: Google::Apis::ClassroomV1::Topic
- Inherits:
-
Object
- Object
- Google::Apis::ClassroomV1::Topic
- Defined in:
- generated/google/apis/classroom_v1/classes.rb,
generated/google/apis/classroom_v1/representations.rb,
generated/google/apis/classroom_v1/representations.rb
Overview
Topic created by a teacher for the course
Instance Attribute Summary collapse
-
#course_id ⇒ String
Identifier of the course.
-
#name ⇒ String
The name of the topic, generated by the user.
-
#topic_id ⇒ String
Unique identifier for the topic.
-
#update_time ⇒ String
The time the topic was last updated by the system.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Topic
constructor
A new instance of Topic.
-
#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) ⇒ Topic
Returns a new instance of Topic.
2034 2035 2036 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 2034 def initialize(**args) update!(**args) end |
Instance Attribute Details
#course_id ⇒ String
Identifier of the course. Read-only.
Corresponds to the JSON property courseId
2014 2015 2016 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 2014 def course_id @course_id end |
#name ⇒ String
The name of the topic, generated by the user. Leading and trailing whitespaces,
if any, are trimmed. Also, multiple consecutive whitespaces are collapsed
into one inside the name. The result must be a non-empty string. Topic names
are case sensitive, and must be no longer than 100 characters.
Corresponds to the JSON property name
2022 2023 2024 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 2022 def name @name end |
#topic_id ⇒ String
Unique identifier for the topic. Read-only.
Corresponds to the JSON property topicId
2027 2028 2029 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 2027 def topic_id @topic_id end |
#update_time ⇒ String
The time the topic was last updated by the system. Read-only.
Corresponds to the JSON property updateTime
2032 2033 2034 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 2032 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2039 2040 2041 2042 2043 2044 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 2039 def update!(**args) @course_id = args[:course_id] if args.key?(:course_id) @name = args[:name] if args.key?(:name) @topic_id = args[:topic_id] if args.key?(:topic_id) @update_time = args[:update_time] if args.key?(:update_time) end |