Class: Google::Apis::DoubleclickbidmanagerV1_1::ListQueriesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DoubleclickbidmanagerV1_1::ListQueriesResponse
- 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
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#next_page_token ⇒ String
Next page's pagination token if one exists.
-
#queries ⇒ Array<Google::Apis::DoubleclickbidmanagerV1_1::Query>
Retrieved queries.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListQueriesResponse
constructor
A new instance of ListQueriesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
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
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
doubleclickbidmanager#listQueriesResponse".
Corresponds to the JSON property kind
132 133 134 |
# File 'lib/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 132 def kind @kind end |
#next_page_token ⇒ String
Next page's pagination token if one exists.
Corresponds to the JSON property nextPageToken
137 138 139 |
# File 'lib/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 137 def next_page_token @next_page_token end |
#queries ⇒ Array<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 |