Class: Google::Apis::ChatV1::Button
- Inherits:
-
Object
- Object
- Google::Apis::ChatV1::Button
- 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
-
#image_button ⇒ Google::Apis::ChatV1::ImageButton
An image button with an onclick action.
-
#text_button ⇒ Google::Apis::ChatV1::TextButton
A button with text and onclick action.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Button
constructor
A new instance of Button.
-
#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) ⇒ Button
Returns a new instance of Button
152 153 154 |
# File 'generated/google/apis/chat_v1/classes.rb', line 152 def initialize(**args) update!(**args) end |
Instance Attribute Details
#image_button ⇒ Google::Apis::ChatV1::ImageButton
An image button with an onclick action.
Corresponds to the JSON property imageButton
145 146 147 |
# File 'generated/google/apis/chat_v1/classes.rb', line 145 def @image_button end |
#text_button ⇒ Google::Apis::ChatV1::TextButton
A button with text and onclick action.
Corresponds to the JSON property textButton
150 151 152 |
# File 'generated/google/apis/chat_v1/classes.rb', line 150 def @text_button end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
157 158 159 160 |
# File 'generated/google/apis/chat_v1/classes.rb', line 157 def update!(**args) @image_button = args[:image_button] if args.key?(:image_button) @text_button = args[:text_button] if args.key?(:text_button) end |