Class: Google::Apis::CloudsearchV1::Labels
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::Labels
- 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
Instance Attribute Summary collapse
-
#display_name ⇒ Array<String>
The display name of the labels.
-
#id ⇒ Array<String>
The ids of the labels attached to the Item, e.g.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Labels
constructor
A new instance of Labels.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Labels
Returns a new instance of Labels.
12415 12416 12417 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 12415 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ Array<String>
The display name of the labels. This is populated (instead of the id) when the
request fetch_spec has LABEL_DISPLAY_NAMES.
Corresponds to the JSON property displayName
12408 12409 12410 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 12408 def display_name @display_name end |
#id ⇒ Array<String>
The ids of the labels attached to the Item, e.g. "^i", "^x_1"
Corresponds to the JSON property id
12413 12414 12415 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 12413 def id @id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
12420 12421 12422 12423 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 12420 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @id = args[:id] if args.key?(:id) end |