class Google::Apis::DisplayvideoV1::NegativeKeywordList
A list of negative keywords used for targeting.
Attributes
Output only. The unique ID of the advertiser the negative keyword list belongs to. Corresponds to the JSON property `advertiserId` @return [Fixnum]
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]
Output only. The resource name of the negative keyword list. Corresponds to the JSON property `name` @return [String]
Output only. The unique ID of the negative keyword list. Assigned by the system. Corresponds to the JSON property `negativeKeywordListId` @return [Fixnum]
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
# File lib/google/apis/displayvideo_v1/classes.rb, line 7354 def initialize(**args) update!(**args) end
Public Instance Methods
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