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
      800 801 802  | 
    
      # File 'generated/google/apis/chat_v1/classes.rb', line 800 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
      787 788 789  | 
    
      # File 'generated/google/apis/chat_v1/classes.rb', line 787 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
      793 794 795  | 
    
      # File 'generated/google/apis/chat_v1/classes.rb', line 793 def name @name end  | 
  
#type ⇒ String
Output only. The type of a space.
Corresponds to the JSON property type
      798 799 800  | 
    
      # File 'generated/google/apis/chat_v1/classes.rb', line 798 def type @type end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      805 806 807 808 809  | 
    
      # File 'generated/google/apis/chat_v1/classes.rb', line 805 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  |