Class: Google::Apis::CloudsearchV1::ResultDisplayField
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::ResultDisplayField
- 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
Display Fields for Search Results
Instance Attribute Summary collapse
-
#label ⇒ String
The display label for the property.
-
#operator_name ⇒ String
The operator name of the property.
-
#property ⇒ Google::Apis::CloudsearchV1::NamedProperty
A typed name-value pair for structured data.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ResultDisplayField
constructor
A new instance of ResultDisplayField.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ResultDisplayField
Returns a new instance of ResultDisplayField.
3776 3777 3778 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3776 def initialize(**args) update!(**args) end |
Instance Attribute Details
#label ⇒ String
The display label for the property.
Corresponds to the JSON property label
3762 3763 3764 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3762 def label @label end |
#operator_name ⇒ String
The operator name of the property.
Corresponds to the JSON property operatorName
3767 3768 3769 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3767 def operator_name @operator_name end |
#property ⇒ Google::Apis::CloudsearchV1::NamedProperty
A typed name-value pair for structured data. The type of the value should be
the same as the registered type for the name
property in the object
definition of objectType
.
Corresponds to the JSON property property
3774 3775 3776 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3774 def property @property end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3781 3782 3783 3784 3785 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3781 def update!(**args) @label = args[:label] if args.key?(:label) @operator_name = args[:operator_name] if args.key?(:operator_name) @property = args[:property] if args.key?(:property) end |