Class: Google::Apis::CloudsearchV1::FixedFooter

Inherits:
Object
  • Object
show all
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 persistent (sticky) footer that is added to the bottom of the card.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ FixedFooter

Returns a new instance of FixedFooter.



8603
8604
8605
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 8603

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

Instance Attribute Details

#buttonsArray<Google::Apis::CloudsearchV1::Button>

Corresponds to the JSON property buttons



8591
8592
8593
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 8591

def buttons
  @buttons
end

#primary_buttonGoogle::Apis::CloudsearchV1::TextButton

Corresponds to the JSON property primaryButton



8596
8597
8598
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 8596

def primary_button
  @primary_button
end

#secondary_buttonGoogle::Apis::CloudsearchV1::TextButton

Corresponds to the JSON property secondaryButton



8601
8602
8603
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 8601

def secondary_button
  @secondary_button
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8608
8609
8610
8611
8612
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 8608

def update!(**args)
  @buttons = args[:buttons] if args.key?(:buttons)
  @primary_button = args[:primary_button] if args.key?(:primary_button)
  @secondary_button = args[:secondary_button] if args.key?(:secondary_button)
end