Class: Google::Apis::DisplayvideoV2::NegativeKeywordList

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

Overview

A list of negative keywords used for targeting.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ NegativeKeywordList

Returns a new instance of NegativeKeywordList.



9168
9169
9170
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9168

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

Instance Attribute Details

#advertiser_idFixnum

Output only. The unique ID of the advertiser the negative keyword list belongs to. Corresponds to the JSON property advertiserId

Returns:

  • (Fixnum)


9143
9144
9145
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9143

def advertiser_id
  @advertiser_id
end

#display_nameString

Required. The display name of the negative keyword list. Must be UTF-8 encoded with a maximum size of 255 bytes. Corresponds to the JSON property displayName

Returns:

  • (String)


9149
9150
9151
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9149

def display_name
  @display_name
end

#nameString

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

Returns:

  • (String)


9154
9155
9156
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9154

def name
  @name
end

#negative_keyword_list_idFixnum

Output only. The unique ID of the negative keyword list. Assigned by the system. Corresponds to the JSON property negativeKeywordListId

Returns:

  • (Fixnum)


9160
9161
9162
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9160

def negative_keyword_list_id
  @negative_keyword_list_id
end

#targeted_line_item_countFixnum

Output only. Number of line items that are directly targeting this negative keyword list. Corresponds to the JSON property targetedLineItemCount

Returns:

  • (Fixnum)


9166
9167
9168
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9166

def targeted_line_item_count
  @targeted_line_item_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9173
9174
9175
9176
9177
9178
9179
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9173

def update!(**args)
  @advertiser_id = args[:advertiser_id] if args.key?(:advertiser_id)
  @display_name = args[:display_name] if args.key?(:display_name)
  @name = args[:name] if args.key?(:name)
  @negative_keyword_list_id = args[:negative_keyword_list_id] if args.key?(:negative_keyword_list_id)
  @targeted_line_item_count = args[:targeted_line_item_count] if args.key?(:targeted_line_item_count)
end