Class: Google::Apis::DoubleclickbidmanagerV1_1::ListQueriesResponse

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

Overview

List queries response.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListQueriesResponse

Returns a new instance of ListQueriesResponse.



295
296
297
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 295

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

Instance Attribute Details

#kindString

Identifies what kind of resource this is. Value: the fixed string " doubleclickbidmanager#listQueriesResponse". Corresponds to the JSON property kind

Returns:

  • (String)


283
284
285
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 283

def kind
  @kind
end

#next_page_tokenString

Next page's pagination token if one exists. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


288
289
290
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 288

def next_page_token
  @next_page_token
end

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

Retrieved queries. Corresponds to the JSON property queries



293
294
295
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 293

def queries
  @queries
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



300
301
302
303
304
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 300

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