Class: Google::Apis::ChatV1::WidgetMarkup

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 widget is a UI element that presents texts, images, etc.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ WidgetMarkup

Returns a new instance of WidgetMarkup.



3143
3144
3145
# File 'lib/google/apis/chat_v1/classes.rb', line 3143

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

Instance Attribute Details

#buttonsArray<Google::Apis::ChatV1::Button>

A list of buttons. Buttons is also oneof data and only one of these fields should be set. Corresponds to the JSON property buttons

Returns:



3125
3126
3127
# File 'lib/google/apis/chat_v1/classes.rb', line 3125

def buttons
  @buttons
end

#imageGoogle::Apis::ChatV1::Image

An image that is specified by a URL and can have an onclick action. Corresponds to the JSON property image



3130
3131
3132
# File 'lib/google/apis/chat_v1/classes.rb', line 3130

def image
  @image
end

#key_valueGoogle::Apis::ChatV1::KeyValue

A UI element contains a key (label) and a value (content). And this element may also contain some actions such as onclick button. Corresponds to the JSON property keyValue



3136
3137
3138
# File 'lib/google/apis/chat_v1/classes.rb', line 3136

def key_value
  @key_value
end

#text_paragraphGoogle::Apis::ChatV1::TextParagraph

A paragraph of text. Formatted text supported. Corresponds to the JSON property textParagraph



3141
3142
3143
# File 'lib/google/apis/chat_v1/classes.rb', line 3141

def text_paragraph
  @text_paragraph
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3148
3149
3150
3151
3152
3153
# File 'lib/google/apis/chat_v1/classes.rb', line 3148

def update!(**args)
  @buttons = args[:buttons] if args.key?(:buttons)
  @image = args[:image] if args.key?(:image)
  @key_value = args[:key_value] if args.key?(:key_value)
  @text_paragraph = args[:text_paragraph] if args.key?(:text_paragraph)
end