Class: Google::Apis::CloudsearchV1::GoogleChatV1ContextualAddOnMarkupCardSection
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::GoogleChatV1ContextualAddOnMarkupCardSection
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudsearch_v1/classes.rb,
lib/google/apis/cloudsearch_v1/representations.rb,
lib/google/apis/cloudsearch_v1/representations.rb
Overview
A section contains a collection of widgets that are rendered (vertically) in the order that they are specified. Across all platforms, cards have a narrow fixed width, so there's currently no need for layout properties (for example, float).
Instance Attribute Summary collapse
-
#header ⇒ String
The header of the section.
-
#widgets ⇒ Array<Google::Apis::CloudsearchV1::GoogleChatV1WidgetMarkup>
A section must contain at least one widget.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChatV1ContextualAddOnMarkupCardSection
constructor
A new instance of GoogleChatV1ContextualAddOnMarkupCardSection.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChatV1ContextualAddOnMarkupCardSection
Returns a new instance of GoogleChatV1ContextualAddOnMarkupCardSection.
10209 10210 10211 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 10209 def initialize(**args) update!(**args) end |
Instance Attribute Details
#header ⇒ String
The header of the section. Formatted text is supported. For more information
about formatting text, see Formatting text in Google Chat apps and Formatting text in Google Workspace Add-ons.
Corresponds to the JSON property header
10202 10203 10204 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 10202 def header @header end |
#widgets ⇒ Array<Google::Apis::CloudsearchV1::GoogleChatV1WidgetMarkup>
A section must contain at least one widget.
Corresponds to the JSON property widgets
10207 10208 10209 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 10207 def @widgets end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10214 10215 10216 10217 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 10214 def update!(**args) @header = args[:header] if args.key?(:header) @widgets = args[:widgets] if args.key?(:widgets) end |