Class: Google::Apis::ChatV1::MeetSpaceLinkData
- Inherits:
-
Object
- Object
- Google::Apis::ChatV1::MeetSpaceLinkData
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/chat_v1/classes.rb,
lib/google/apis/chat_v1/representations.rb,
lib/google/apis/chat_v1/representations.rb
Overview
Data for Meet space links.
Instance Attribute Summary collapse
-
#huddle_status ⇒ String
Optional.
-
#meeting_code ⇒ String
Meeting code of the linked Meet space.
-
#type ⇒ String
Indicates the type of the Meet space.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MeetSpaceLinkData
constructor
A new instance of MeetSpaceLinkData.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MeetSpaceLinkData
Returns a new instance of MeetSpaceLinkData.
4763 4764 4765 |
# File 'lib/google/apis/chat_v1/classes.rb', line 4763 def initialize(**args) update!(**args) end |
Instance Attribute Details
#huddle_status ⇒ String
Optional. Output only. If the Meet is a Huddle, indicates the status of the
huddle. Otherwise, this is unset.
Corresponds to the JSON property huddleStatus
4751 4752 4753 |
# File 'lib/google/apis/chat_v1/classes.rb', line 4751 def huddle_status @huddle_status end |
#meeting_code ⇒ String
Meeting code of the linked Meet space.
Corresponds to the JSON property meetingCode
4756 4757 4758 |
# File 'lib/google/apis/chat_v1/classes.rb', line 4756 def meeting_code @meeting_code end |
#type ⇒ String
Indicates the type of the Meet space.
Corresponds to the JSON property type
4761 4762 4763 |
# File 'lib/google/apis/chat_v1/classes.rb', line 4761 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4768 4769 4770 4771 4772 |
# File 'lib/google/apis/chat_v1/classes.rb', line 4768 def update!(**args) @huddle_status = args[:huddle_status] if args.key?(:huddle_status) @meeting_code = args[:meeting_code] if args.key?(:meeting_code) @type = args[:type] if args.key?(:type) end |