Class: Google::Apis::CloudsearchV1::DisplayedProperty
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::DisplayedProperty
- 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
A reference to a top-level property within the object that should be displayed in search results. The values of the chosen properties is displayed in the search results along with the display label for that property if one is specified. If a display label is not specified, only the values is shown.
Instance Attribute Summary collapse
-
#property_name ⇒ String
The name of the top-level property as defined in a property definition for the object.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DisplayedProperty
constructor
A new instance of DisplayedProperty.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DisplayedProperty
Returns a new instance of DisplayedProperty.
681 682 683 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 681 def initialize(**args) update!(**args) end |
Instance Attribute Details
#property_name ⇒ String
The name of the top-level property as defined in a property definition for the
object. If the name is not a defined property in the schema, an error is given
when attempting to update the schema.
Corresponds to the JSON property propertyName
679 680 681 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 679 def property_name @property_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
686 687 688 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 686 def update!(**args) @property_name = args[:property_name] if args.key?(:property_name) end |