Class: Google::Apis::ChatV1::Space
- Inherits:
-
Object
- Object
- Google::Apis::ChatV1::Space
- Defined in:
- generated/google/apis/chat_v1/classes.rb,
generated/google/apis/chat_v1/representations.rb,
generated/google/apis/chat_v1/representations.rb
Overview
A room or DM in Hangouts Chat.
Instance Attribute Summary collapse
-
#display_name ⇒ String
Output only.
-
#name ⇒ String
Resource name of the space, in the form "spaces/*".
-
#type ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Space
constructor
A new instance of Space.
-
#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) ⇒ Space
Returns a new instance of Space
718 719 720 |
# File 'generated/google/apis/chat_v1/classes.rb', line 718 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
Output only. The display name (only if the space is a room).
Corresponds to the JSON property displayName
705 706 707 |
# File 'generated/google/apis/chat_v1/classes.rb', line 705 def display_name @display_name end |
#name ⇒ String
Resource name of the space, in the form "spaces/*".
Example: spaces/AAAAMpdlehYs
Corresponds to the JSON property name
711 712 713 |
# File 'generated/google/apis/chat_v1/classes.rb', line 711 def name @name end |
#type ⇒ String
Output only. The type of a space.
Corresponds to the JSON property type
716 717 718 |
# File 'generated/google/apis/chat_v1/classes.rb', line 716 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
723 724 725 726 727 |
# File 'generated/google/apis/chat_v1/classes.rb', line 723 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @name = args[:name] if args.key?(:name) @type = args[:type] if args.key?(:type) end |