Class: Google::Apis::CloudsearchV1::AppsDynamiteStorageColumnsColumnWidgets
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::AppsDynamiteStorageColumnsColumnWidgets
- 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
LINT.IfChange The column
widget can contain these widgets.
Instance Attribute Summary collapse
-
#button_list ⇒ Google::Apis::CloudsearchV1::AppsDynamiteStorageButtonList
A list of buttons layed out horizontally.
-
#date_time_picker ⇒ Google::Apis::CloudsearchV1::AppsDynamiteStorageDateTimePicker
The widget that lets users to specify a date and time.
-
#decorated_text ⇒ Google::Apis::CloudsearchV1::AppsDynamiteStorageDecoratedText
A widget that displays text with optional decorations such as a label above or below the text, an icon in front of the text, a selection widget or a button after the text.
-
#image ⇒ Google::Apis::CloudsearchV1::AppsDynamiteStorageImage
An image that is specified by a URL and can have an onClick action.
-
#selection_input ⇒ Google::Apis::CloudsearchV1::AppsDynamiteStorageSelectionInput
A widget that creates a UI item (for example, a drop-down list) with options for users to select.
-
#text_input ⇒ Google::Apis::CloudsearchV1::AppsDynamiteStorageTextInput
A text input is a UI item where users can input text.
-
#text_paragraph ⇒ Google::Apis::CloudsearchV1::AppsDynamiteStorageTextParagraph
A paragraph of text that supports formatting.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AppsDynamiteStorageColumnsColumnWidgets
constructor
A new instance of AppsDynamiteStorageColumnsColumnWidgets.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AppsDynamiteStorageColumnsColumnWidgets
Returns a new instance of AppsDynamiteStorageColumnsColumnWidgets.
3238 3239 3240 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3238 def initialize(**args) update!(**args) end |
Instance Attribute Details
#button_list ⇒ Google::Apis::CloudsearchV1::AppsDynamiteStorageButtonList
A list of buttons layed out horizontally.
Corresponds to the JSON property buttonList
3201 3202 3203 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3201 def @button_list end |
#date_time_picker ⇒ Google::Apis::CloudsearchV1::AppsDynamiteStorageDateTimePicker
The widget that lets users to specify a date and time.
Corresponds to the JSON property dateTimePicker
3206 3207 3208 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3206 def date_time_picker @date_time_picker end |
#decorated_text ⇒ Google::Apis::CloudsearchV1::AppsDynamiteStorageDecoratedText
A widget that displays text with optional decorations such as a label above or
below the text, an icon in front of the text, a selection widget or a button
after the text.
Corresponds to the JSON property decoratedText
3213 3214 3215 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3213 def decorated_text @decorated_text end |
#image ⇒ Google::Apis::CloudsearchV1::AppsDynamiteStorageImage
An image that is specified by a URL and can have an onClick action.
Corresponds to the JSON property image
3218 3219 3220 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3218 def image @image end |
#selection_input ⇒ Google::Apis::CloudsearchV1::AppsDynamiteStorageSelectionInput
A widget that creates a UI item (for example, a drop-down list) with options
for users to select.
Corresponds to the JSON property selectionInput
3224 3225 3226 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3224 def selection_input @selection_input end |
#text_input ⇒ Google::Apis::CloudsearchV1::AppsDynamiteStorageTextInput
A text input is a UI item where users can input text. A text input can also
have an onChange action and suggestions.
Corresponds to the JSON property textInput
3230 3231 3232 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3230 def text_input @text_input end |
#text_paragraph ⇒ Google::Apis::CloudsearchV1::AppsDynamiteStorageTextParagraph
A paragraph of text that supports formatting. See Text formatting for details.
Corresponds to the JSON property textParagraph
3236 3237 3238 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3236 def text_paragraph @text_paragraph end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3243 3244 3245 3246 3247 3248 3249 3250 3251 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3243 def update!(**args) @button_list = args[:button_list] if args.key?(:button_list) @date_time_picker = args[:date_time_picker] if args.key?(:date_time_picker) @decorated_text = args[:decorated_text] if args.key?(:decorated_text) @image = args[:image] if args.key?(:image) @selection_input = args[:selection_input] if args.key?(:selection_input) @text_input = args[:text_input] if args.key?(:text_input) @text_paragraph = args[:text_paragraph] if args.key?(:text_paragraph) end |