Class: Google::Apis::ChatV1::GoogleAppsCardV1CardFixedFooter
- Inherits:
-
Object
- Object
- Google::Apis::ChatV1::GoogleAppsCardV1CardFixedFooter
- 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 persistent (sticky) footer that that appears at the bottom of the card.
Setting fixedFooter
without specifying a primaryButton
or a
secondaryButton
causes an error. For Chat apps, you can use fixed footers in
dialogs, but not card
messages.
For an example in Google Chat apps, see Add a persistent footer. Google Workspace Add-ons and Chat apps:
Instance Attribute Summary collapse
-
#primary_button ⇒ Google::Apis::ChatV1::GoogleAppsCardV1Button
A text, icon, or text and icon button that users can click.
-
#secondary_button ⇒ Google::Apis::ChatV1::GoogleAppsCardV1Button
A text, icon, or text and icon button that users can click.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAppsCardV1CardFixedFooter
constructor
A new instance of GoogleAppsCardV1CardFixedFooter.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAppsCardV1CardFixedFooter
Returns a new instance of GoogleAppsCardV1CardFixedFooter.
1740 1741 1742 |
# File 'lib/google/apis/chat_v1/classes.rb', line 1740 def initialize(**args) update!(**args) end |
Instance Attribute Details
#primary_button ⇒ Google::Apis::ChatV1::GoogleAppsCardV1Button
A text, icon, or text and icon button that users can click. For an example in
Google Chat apps, see Add a button. To make an image a
clickable button, specify an Image
(not an ImageComponent
) and set an
onClick
action. Google Workspace Add-ons and Chat apps:
Corresponds to the JSON property primaryButton
1728 1729 1730 |
# File 'lib/google/apis/chat_v1/classes.rb', line 1728 def @primary_button end |
#secondary_button ⇒ Google::Apis::ChatV1::GoogleAppsCardV1Button
A text, icon, or text and icon button that users can click. For an example in
Google Chat apps, see Add a button. To make an image a
clickable button, specify an Image
(not an ImageComponent
) and set an
onClick
action. Google Workspace Add-ons and Chat apps:
Corresponds to the JSON property secondaryButton
1738 1739 1740 |
# File 'lib/google/apis/chat_v1/classes.rb', line 1738 def @secondary_button end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1745 1746 1747 1748 |
# File 'lib/google/apis/chat_v1/classes.rb', line 1745 def update!(**args) @primary_button = args[:primary_button] if args.key?(:primary_button) @secondary_button = args[:secondary_button] if args.key?(:secondary_button) end |