Class: Google::Apis::ChatV1::Section
- Inherits:
-
Object
- Object
- Google::Apis::ChatV1::Section
- 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 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 is currently no need for layout properties (e.g. float).
Instance Attribute Summary collapse
-
#header ⇒ String
The header of the section, text formatted supported.
-
#widgets ⇒ Array<Google::Apis::ChatV1::WidgetMarkup>
A section must contain at least 1 widget.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Section
constructor
A new instance of Section.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Section
Returns a new instance of Section.
891 892 893 |
# File 'generated/google/apis/chat_v1/classes.rb', line 891 def initialize(**args) update!(**args) end |
Instance Attribute Details
#header ⇒ String
The header of the section, text formatted supported.
Corresponds to the JSON property header
884 885 886 |
# File 'generated/google/apis/chat_v1/classes.rb', line 884 def header @header end |
#widgets ⇒ Array<Google::Apis::ChatV1::WidgetMarkup>
A section must contain at least 1 widget.
Corresponds to the JSON property widgets
889 890 891 |
# File 'generated/google/apis/chat_v1/classes.rb', line 889 def @widgets end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
896 897 898 899 |
# File 'generated/google/apis/chat_v1/classes.rb', line 896 def update!(**args) @header = args[:header] if args.key?(:header) @widgets = args[:widgets] if args.key?(:widgets) end |