Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaWidgetConfigUiComponentField
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaWidgetConfigUiComponentField
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1alpha/classes.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb
Overview
Facet field that maps to a UI Component.
Instance Attribute Summary collapse
-
#device_visibility ⇒ Array<String>
The field visibility on different types of devices.
-
#display_template ⇒ String
The template to customize how the field is displayed.
-
#field ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaWidgetConfigUiComponentField
constructor
A new instance of GoogleCloudDiscoveryengineV1alphaWidgetConfigUiComponentField.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaWidgetConfigUiComponentField
Returns a new instance of GoogleCloudDiscoveryengineV1alphaWidgetConfigUiComponentField.
7482 7483 7484 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7482 def initialize(**args) update!(**args) end |
Instance Attribute Details
#device_visibility ⇒ Array<String>
The field visibility on different types of devices.
Corresponds to the JSON property deviceVisibility
7469 7470 7471 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7469 def device_visibility @device_visibility end |
#display_template ⇒ String
The template to customize how the field is displayed. An example value would
be a string that looks like: "Price: value
".
Corresponds to the JSON property displayTemplate
7475 7476 7477 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7475 def display_template @display_template end |
#field ⇒ String
Required. Registered field name. The format is field.abc
.
Corresponds to the JSON property field
7480 7481 7482 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7480 def field @field end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7487 7488 7489 7490 7491 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7487 def update!(**args) @device_visibility = args[:device_visibility] if args.key?(:device_visibility) @display_template = args[:display_template] if args.key?(:display_template) @field = args[:field] if args.key?(:field) end |