Class: Google::Apis::CloudsearchV1::AppsDynamiteStorageColumnsColumnWidgets

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AppsDynamiteStorageColumnsColumnWidgets

Returns a new instance of AppsDynamiteStorageColumnsColumnWidgets.



3180
3181
3182
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3180

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#button_listGoogle::Apis::CloudsearchV1::AppsDynamiteStorageButtonList

A list of buttons layed out horizontally. Corresponds to the JSON property buttonList



3143
3144
3145
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3143

def button_list
  @button_list
end

#date_time_pickerGoogle::Apis::CloudsearchV1::AppsDynamiteStorageDateTimePicker

The widget that lets users to specify a date and time. Corresponds to the JSON property dateTimePicker



3148
3149
3150
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3148

def date_time_picker
  @date_time_picker
end

#decorated_textGoogle::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



3155
3156
3157
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3155

def decorated_text
  @decorated_text
end

#imageGoogle::Apis::CloudsearchV1::AppsDynamiteStorageImage

An image that is specified by a URL and can have an onClick action. Corresponds to the JSON property image



3160
3161
3162
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3160

def image
  @image
end

#selection_inputGoogle::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



3166
3167
3168
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3166

def selection_input
  @selection_input
end

#text_inputGoogle::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



3172
3173
3174
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3172

def text_input
  @text_input
end

#text_paragraphGoogle::Apis::CloudsearchV1::AppsDynamiteStorageTextParagraph

A paragraph of text that supports formatting. See Text formatting for details. Corresponds to the JSON property textParagraph



3178
3179
3180
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3178

def text_paragraph
  @text_paragraph
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3185
3186
3187
3188
3189
3190
3191
3192
3193
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3185

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