Class: Google::Apis::CloudsearchV1::ObjectDisplayOptions

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/cloudsearch_v1/classes.rb,
generated/google/apis/cloudsearch_v1/representations.rb,
generated/google/apis/cloudsearch_v1/representations.rb

Overview

The display options for an object.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ObjectDisplayOptions

Returns a new instance of ObjectDisplayOptions.



2499
2500
2501
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 2499

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

Instance Attribute Details

#metalinesArray<Google::Apis::CloudsearchV1::Metaline>

Defines the properties that are displayed in the metalines of the search results. The property values are displayed in the order given here. If a property holds multiple values, all of the values are displayed before the next properties. For this reason, it is a good practice to specify singular properties before repeated properties in this list. All of the properties must set is_returnable to true. The maximum number of metalines is 3. Corresponds to the JSON property metalines



2489
2490
2491
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 2489

def metalines
  @metalines
end

#object_display_labelString

The user friendly label to display in the search result to indicate the type of the item. This is OPTIONAL; if not provided, an object label isn't displayed on the context line of the search results. The maximum length is 64 characters. Corresponds to the JSON property objectDisplayLabel

Returns:

  • (String)


2497
2498
2499
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 2497

def object_display_label
  @object_display_label
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2504
2505
2506
2507
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 2504

def update!(**args)
  @metalines = args[:metalines] if args.key?(:metalines)
  @object_display_label = args[:object_display_label] if args.key?(:object_display_label)
end