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.
2970 2971 2972 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2970 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
2933 2934 2935 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2933 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
2938 2939 2940 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2938 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
2945 2946 2947 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2945 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
2950 2951 2952 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2950 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
2956 2957 2958 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2956 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
2962 2963 2964 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2962 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
2968 2969 2970 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2968 def text_paragraph @text_paragraph end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2975 2976 2977 2978 2979 2980 2981 2982 2983 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2975 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 |