Class: Google::Apis::DisplayvideoV3::NegativeKeyword

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

Overview

A negatively targeted keyword that belongs to a negative keyword list.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ NegativeKeyword

Returns a new instance of NegativeKeyword.



9713
9714
9715
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 9713

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

Instance Attribute Details

#keyword_valueString

Required. Immutable. The negatively targeted keyword, for example car insurance. Must be UTF-8 encoded with a maximum size of 255 bytes. Maximum number of characters is 80. Maximum number of words is 10. Valid characters are restricted to ASCII characters only. The only URL-escaping permitted is for representing whitespace between words. Leading or trailing whitespace is ignored. Corresponds to the JSON property keywordValue

Returns:

  • (String)


9706
9707
9708
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 9706

def keyword_value
  @keyword_value
end

#nameString

Output only. The resource name of the negative keyword. Corresponds to the JSON property name

Returns:

  • (String)


9711
9712
9713
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 9711

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9718
9719
9720
9721
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 9718

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