Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaWidgetConfigFacetField
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaWidgetConfigFacetField
- 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 fields that store the mapping of fields to end user widget appearance.
Instance Attribute Summary collapse
-
#display_name ⇒ String
Optional.
-
#field ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaWidgetConfigFacetField
constructor
A new instance of GoogleCloudDiscoveryengineV1alphaWidgetConfigFacetField.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaWidgetConfigFacetField
Returns a new instance of GoogleCloudDiscoveryengineV1alphaWidgetConfigFacetField.
7451 7452 7453 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7451 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
Optional. The field name that end users will see.
Corresponds to the JSON property displayName
7444 7445 7446 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7444 def display_name @display_name end |
#field ⇒ String
Required. Registered field name. The format is field.abc
.
Corresponds to the JSON property field
7449 7450 7451 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7449 def field @field end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7456 7457 7458 7459 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7456 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @field = args[:field] if args.key?(:field) end |