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.
3590 3591 3592 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3590 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
3576 3577 3578 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3576 def selected @selected end |
#text ⇒ String
The text to be displayed.
Corresponds to the JSON property text
3582 3583 3584 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3582 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
3588 3589 3590 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3588 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3595 3596 3597 3598 3599 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3595 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 |