Class: Google::Apis::CloudsearchV1::AppsDynamiteStorageSelectionInputSelectionItem
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::AppsDynamiteStorageSelectionInputSelectionItem
- 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
The item in the switch control. A radio button, at most one of the items is selected.
Instance Attribute Summary collapse
-
#selected ⇒ Boolean
(also: #selected?)
If more than one item is selected for
RADIO_BUTTONandDROPDOWN, the first selected item is treated as selected and the ones after are ignored. -
#text ⇒ String
The text to be displayed.
-
#value ⇒ String
The value associated with this item.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AppsDynamiteStorageSelectionInputSelectionItem
constructor
A new instance of AppsDynamiteStorageSelectionInputSelectionItem.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AppsDynamiteStorageSelectionInputSelectionItem
Returns a new instance of AppsDynamiteStorageSelectionInputSelectionItem.
3597 3598 3599 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3597 def initialize(**args) update!(**args) end |
Instance Attribute Details
#selected ⇒ Boolean Also known as: selected?
If more than one item is selected for RADIO_BUTTON and DROPDOWN, the first
selected item is treated as selected and the ones after are ignored.
Corresponds to the JSON property selected
3583 3584 3585 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3583 def selected @selected end |
#text ⇒ String
The text to be displayed.
Corresponds to the JSON property text
3589 3590 3591 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3589 def text @text end |
#value ⇒ String
The value associated with this item. The client should use this as a form
input value.
Corresponds to the JSON property value
3595 3596 3597 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3595 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3602 3603 3604 3605 3606 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3602 def update!(**args) @selected = args[:selected] if args.key?(:selected) @text = args[:text] if args.key?(:text) @value = args[:value] if args.key?(:value) end |