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

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/doubleclickbidmanager_v1_1/classes.rb,
lib/google/apis/doubleclickbidmanager_v1_1/representations.rb,
lib/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.



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

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)


132
133
134
# File 'lib/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 132

def kind
  @kind
end

#next_page_tokenString

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

Returns:

  • (String)


137
138
139
# File 'lib/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 137

def next_page_token
  @next_page_token
end

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

Retrieved queries. Corresponds to the JSON property queries



142
143
144
# File 'lib/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 142

def queries
  @queries
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



149
150
151
152
153
# File 'lib/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 149

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