Class: Google::Apis::CloudsearchV1::FixedFooter
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::FixedFooter
- 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
-
#buttons ⇒ Array<Google::Apis::CloudsearchV1::Button>
Corresponds to the JSON property
buttons. -
#primary_button ⇒ Google::Apis::CloudsearchV1::TextButton
Corresponds to the JSON property
primaryButton. -
#secondary_button ⇒ Google::Apis::CloudsearchV1::TextButton
Corresponds to the JSON property
secondaryButton.
Instance Method Summary collapse
-
#initialize(**args) ⇒ FixedFooter
constructor
A new instance of FixedFooter.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ FixedFooter
Returns a new instance of FixedFooter.
7784 7785 7786 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 7784 def initialize(**args) update!(**args) end |
Instance Attribute Details
#buttons ⇒ Array<Google::Apis::CloudsearchV1::Button>
Corresponds to the JSON property buttons
7772 7773 7774 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 7772 def @buttons end |
#primary_button ⇒ Google::Apis::CloudsearchV1::TextButton
Corresponds to the JSON property primaryButton
7777 7778 7779 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 7777 def @primary_button end |
#secondary_button ⇒ Google::Apis::CloudsearchV1::TextButton
Corresponds to the JSON property secondaryButton
7782 7783 7784 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 7782 def @secondary_button end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7789 7790 7791 7792 7793 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 7789 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 |