Class: Google::Apis::ChatV1::Button

Inherits:
Object
  • Object
show all
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

A button. Can be a text button or an image button.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Button

Returns a new instance of Button.



372
373
374
# File 'lib/google/apis/chat_v1/classes.rb', line 372

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

Instance Attribute Details

#image_buttonGoogle::Apis::ChatV1::ImageButton

An image button with an onclick action. Corresponds to the JSON property imageButton



365
366
367
# File 'lib/google/apis/chat_v1/classes.rb', line 365

def image_button
  @image_button
end

#text_buttonGoogle::Apis::ChatV1::TextButton

A button with text and onclick action. Corresponds to the JSON property textButton



370
371
372
# File 'lib/google/apis/chat_v1/classes.rb', line 370

def text_button
  @text_button
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



377
378
379
380
# File 'lib/google/apis/chat_v1/classes.rb', line 377

def update!(**args)
  @image_button = args[:image_button] if args.key?(:image_button)
  @text_button = args[:text_button] if args.key?(:text_button)
end