Class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1CustomAttribute

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/discoveryengine_v1/classes.rb,
lib/google/apis/discoveryengine_v1/representations.rb,
lib/google/apis/discoveryengine_v1/representations.rb

Overview

A custom attribute that is not explicitly modeled in a resource, e.g. UserEvent.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1CustomAttribute

Returns a new instance of GoogleCloudDiscoveryengineV1CustomAttribute.



3157
3158
3159
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 3157

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

Instance Attribute Details

#numbersArray<Float>

The numerical values of this custom attribute. For example, [2.3, 15.4] when the key is "lengths_cm". Exactly one of CustomAttribute.text or CustomAttribute.numbers should be set. Otherwise, an INVALID_ARGUMENT error is returned. Corresponds to the JSON property numbers

Returns:

  • (Array<Float>)


3146
3147
3148
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 3146

def numbers
  @numbers
end

#textArray<String>

The textual values of this custom attribute. For example, ["yellow", "green"] when the key is "color". Empty string is not allowed. Otherwise, an INVALID_ARGUMENT error is returned. Exactly one of CustomAttribute.text or CustomAttribute.numbers should be set. Otherwise, an INVALID_ARGUMENT error is returned. Corresponds to the JSON property text

Returns:

  • (Array<String>)


3155
3156
3157
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 3155

def text
  @text
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3162
3163
3164
3165
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 3162

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