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_BUTTON
andDROPDOWN
, 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.
3967 3968 3969 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3967 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
3953 3954 3955 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3953 def selected @selected end |
#text ⇒ String
The text to be displayed.
Corresponds to the JSON property text
3959 3960 3961 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3959 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
3965 3966 3967 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3965 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3972 3973 3974 3975 3976 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3972 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 |