Class: Google::Apis::CloudsearchV1::Menu

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

This is deprecated and please use SelectionControl by setting type to DROPDOWN.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Menu

Returns a new instance of Menu.



13800
13801
13802
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 13800

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

Instance Attribute Details

#itemsArray<Google::Apis::CloudsearchV1::MenuItem>

Corresponds to the JSON property items



13782
13783
13784
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 13782

def items
  @items
end

#labelString

Label used to be displayed ahead of the menu. It is optional. Corresponds to the JSON property label

Returns:

  • (String)


13787
13788
13789
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 13787

def label
  @label
end

#nameString

The name of the text field which is will be used in FormInput. Corresponds to the JSON property name

Returns:

  • (String)


13792
13793
13794
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 13792

def name
  @name
end

#on_changeGoogle::Apis::CloudsearchV1::FormAction

If specified, form is submitted when selection changed. If not specified, developer will need to specify a separate button. Corresponds to the JSON property onChange



13798
13799
13800
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 13798

def on_change
  @on_change
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



13805
13806
13807
13808
13809
13810
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 13805

def update!(**args)
  @items = args[:items] if args.key?(:items)
  @label = args[:label] if args.key?(:label)
  @name = args[:name] if args.key?(:name)
  @on_change = args[:on_change] if args.key?(:on_change)
end