Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaWidgetConfigUiComponentField

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaWidgetConfigUiComponentField

Returns a new instance of GoogleCloudDiscoveryengineV1alphaWidgetConfigUiComponentField.



7855
7856
7857
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7855

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

Instance Attribute Details

#device_visibilityArray<String>

The field visibility on different types of devices. Corresponds to the JSON property deviceVisibility

Returns:

  • (Array<String>)


7842
7843
7844
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7842

def device_visibility
  @device_visibility
end

#display_templateString

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

Returns:

  • (String)


7848
7849
7850
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7848

def display_template
  @display_template
end

#fieldString

Required. Registered field name. The format is field.abc. Corresponds to the JSON property field

Returns:

  • (String)


7853
7854
7855
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7853

def field
  @field
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7860
7861
7862
7863
7864
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7860

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