class Google::Apis::DisplayvideoV1::ListNegativeKeywordListsResponse

Response message for NegativeKeywordListService.ListNegativeKeywordLists.

Attributes

negative_keyword_lists[RW]

The list of negative keyword lists. This list will be absent if empty. Corresponds to the JSON property `negativeKeywordLists` @return [Array<Google::Apis::DisplayvideoV1::NegativeKeywordList>]

next_page_token[RW]

A token to retrieve the next page of results. Pass this value in the page_token field in the subsequent call to `ListNegativeKeywordLists` method to retrieve the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/displayvideo_v1/classes.rb, line 6770
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 6775
def update!(**args)
  @negative_keyword_lists = args[:negative_keyword_lists] if args.key?(:negative_keyword_lists)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end