Class: Google::Apis::CloudsearchV1::SelectionControl
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::SelectionControl
- 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
Instance Attribute Summary collapse
-
#items ⇒ Array<Google::Apis::CloudsearchV1::SelectionItem>
For radio button, at most one of the items will be selected.
-
#label ⇒ String
Label used to be displayed ahead of the selection control.
-
#name ⇒ String
The name of the text field which is will be used in FormInput.
-
#on_change ⇒ Google::Apis::CloudsearchV1::FormAction
If specified, form is submitted when selection changed.
-
#type ⇒ String
Corresponds to the JSON property
type
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SelectionControl
constructor
A new instance of SelectionControl.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SelectionControl
Returns a new instance of SelectionControl.
18620 18621 18622 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 18620 def initialize(**args) update!(**args) end |
Instance Attribute Details
#items ⇒ Array<Google::Apis::CloudsearchV1::SelectionItem>
For radio button, at most one of the items will be selected.
Corresponds to the JSON property items
18597 18598 18599 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 18597 def items @items end |
#label ⇒ String
Label used to be displayed ahead of the selection control. It is optional.
Corresponds to the JSON property label
18602 18603 18604 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 18602 def label @label end |
#name ⇒ String
The name of the text field which is will be used in FormInput.
Corresponds to the JSON property name
18607 18608 18609 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 18607 def name @name end |
#on_change ⇒ Google::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
18613 18614 18615 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 18613 def on_change @on_change end |
#type ⇒ String
Corresponds to the JSON property type
18618 18619 18620 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 18618 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
18625 18626 18627 18628 18629 18630 18631 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 18625 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) @type = args[:type] if args.key?(:type) end |