Class: Google::Apis::ChatV1::GoogleAppsCardV1SelectionItem
- Inherits:
-
Object
- Object
- Google::Apis::ChatV1::GoogleAppsCardV1SelectionItem
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/chat_v1/classes.rb,
lib/google/apis/chat_v1/representations.rb,
lib/google/apis/chat_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) ⇒ GoogleAppsCardV1SelectionItem
constructor
A new instance of GoogleAppsCardV1SelectionItem.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAppsCardV1SelectionItem
Returns a new instance of GoogleAppsCardV1SelectionItem.
1866 1867 1868 |
# File 'lib/google/apis/chat_v1/classes.rb', line 1866 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
1852 1853 1854 |
# File 'lib/google/apis/chat_v1/classes.rb', line 1852 def selected @selected end |
#text ⇒ String
The text to be displayed.
Corresponds to the JSON property text
1858 1859 1860 |
# File 'lib/google/apis/chat_v1/classes.rb', line 1858 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
1864 1865 1866 |
# File 'lib/google/apis/chat_v1/classes.rb', line 1864 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1871 1872 1873 1874 1875 |
# File 'lib/google/apis/chat_v1/classes.rb', line 1871 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 |