Class: Google::Apis::ChatV1::Space

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
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

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Space

Returns a new instance of Space.



803
804
805
# File 'generated/google/apis/chat_v1/classes.rb', line 803

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#display_nameString

Output only. The display name (only if the space is a room). Corresponds to the JSON property displayName

Returns:

  • (String)


790
791
792
# File 'generated/google/apis/chat_v1/classes.rb', line 790

def display_name
  @display_name
end

#nameString

Resource name of the space, in the form "spaces/*". Example: spaces/AAAAMpdlehYs Corresponds to the JSON property name

Returns:

  • (String)


796
797
798
# File 'generated/google/apis/chat_v1/classes.rb', line 796

def name
  @name
end

#typeString

Output only. The type of a space. Corresponds to the JSON property type

Returns:

  • (String)


801
802
803
# File 'generated/google/apis/chat_v1/classes.rb', line 801

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



808
809
810
811
812
# File 'generated/google/apis/chat_v1/classes.rb', line 808

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