Class: Google::Apis::ChatV1::Section

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Section

Returns a new instance of Section.



4400
4401
4402
# File 'lib/google/apis/chat_v1/classes.rb', line 4400

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

Instance Attribute Details

#headerString

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

Returns:

  • (String)


4393
4394
4395
# File 'lib/google/apis/chat_v1/classes.rb', line 4393

def header
  @header
end

#widgetsArray<Google::Apis::ChatV1::WidgetMarkup>

A section must contain at least one widget. Corresponds to the JSON property widgets



4398
4399
4400
# File 'lib/google/apis/chat_v1/classes.rb', line 4398

def widgets
  @widgets
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4405
4406
4407
4408
# File 'lib/google/apis/chat_v1/classes.rb', line 4405

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