class Google::Apis::ChatV1::GoogleAppsCardV1CardFixedFooter

A persistent (sticky) footer that is added to the bottom of the card.

Attributes

primary_button[RW]

A button. Can be a text button or an image button. Corresponds to the JSON property `primaryButton` @return [Google::Apis::ChatV1::GoogleAppsCardV1Button]

secondary_button[RW]

A button. Can be a text button or an image button. Corresponds to the JSON property `secondaryButton` @return [Google::Apis::ChatV1::GoogleAppsCardV1Button]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/chat_v1/classes.rb, line 1194
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/chat_v1/classes.rb, line 1199
def update!(**args)
  @primary_button = args[:primary_button] if args.key?(:primary_button)
  @secondary_button = args[:secondary_button] if args.key?(:secondary_button)
end