Class: Google::Apis::DoubleclickbidmanagerV2::ListQueriesResponse

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListQueriesResponse

Returns a new instance of ListQueriesResponse.



151
152
153
# File 'lib/google/apis/doubleclickbidmanager_v2/classes.rb', line 151

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

Instance Attribute Details

#next_page_tokenString

A token, which can be sent as page_token to retrieve the next page of queries. If this field is omitted, there are no subsequent pages. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


144
145
146
# File 'lib/google/apis/doubleclickbidmanager_v2/classes.rb', line 144

def next_page_token
  @next_page_token
end

#queriesArray<Google::Apis::DoubleclickbidmanagerV2::Query>

The list of queries. Corresponds to the JSON property queries



149
150
151
# File 'lib/google/apis/doubleclickbidmanager_v2/classes.rb', line 149

def queries
  @queries
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



156
157
158
159
# File 'lib/google/apis/doubleclickbidmanager_v2/classes.rb', line 156

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