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
| 724 725 726 | # File 'generated/google/apis/chat_v1/classes.rb', line 724 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
| 711 712 713 | # File 'generated/google/apis/chat_v1/classes.rb', line 711 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
| 717 718 719 | # File 'generated/google/apis/chat_v1/classes.rb', line 717 def name @name end | 
#type ⇒ String
Output only. The type of a space.
Corresponds to the JSON property type
| 722 723 724 | # File 'generated/google/apis/chat_v1/classes.rb', line 722 def type @type end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 729 730 731 732 733 | # File 'generated/google/apis/chat_v1/classes.rb', line 729 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 |