class Google::Apis::DisplayvideoV1::NegativeKeywordList

A list of negative keywords used for targeting.

Attributes

advertiser_id[RW]

Output only. The unique ID of the advertiser the negative keyword list belongs to. Corresponds to the JSON property `advertiserId` @return [Fixnum]

display_name[RW]

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` @return [String]

name[RW]

Output only. The resource name of the negative keyword list. Corresponds to the JSON property `name` @return [String]

negative_keyword_list_id[RW]

Output only. The unique ID of the negative keyword list. Assigned by the system. Corresponds to the JSON property `negativeKeywordListId` @return [Fixnum]

targeted_line_item_count[RW]

Output only. Number of line items that are directly targeting this negative keyword list. Corresponds to the JSON property `targetedLineItemCount` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/displayvideo_v1/classes.rb, line 7354
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/displayvideo_v1/classes.rb, line 7359
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