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

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 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.



227
228
229
# File 'generated/google/apis/chat_v1/classes.rb', line 227

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



220
221
222
# File 'generated/google/apis/chat_v1/classes.rb', line 220

def image_button
  @image_button
end

#text_buttonGoogle::Apis::ChatV1::TextButton

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



225
226
227
# File 'generated/google/apis/chat_v1/classes.rb', line 225

def text_button
  @text_button
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



232
233
234
235
# File 'generated/google/apis/chat_v1/classes.rb', line 232

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