Class: Google::Apis::DoubleclickbidmanagerV1::ListQueriesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DoubleclickbidmanagerV1::ListQueriesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/doubleclickbidmanager_v1/classes.rb,
generated/google/apis/doubleclickbidmanager_v1/representations.rb,
generated/google/apis/doubleclickbidmanager_v1/representations.rb
Overview
List queries response.
Instance Attribute Summary collapse
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#queries ⇒ Array<Google::Apis::DoubleclickbidmanagerV1::Query>
Retrieved queries.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListQueriesResponse
constructor
A new instance of ListQueriesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListQueriesResponse
Returns a new instance of ListQueriesResponse
213 214 215 |
# File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 213 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
206 207 208 |
# File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 206 def kind @kind end |
#queries ⇒ Array<Google::Apis::DoubleclickbidmanagerV1::Query>
Retrieved queries.
Corresponds to the JSON property queries
211 212 213 |
# File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 211 def queries @queries end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
218 219 220 221 |
# File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 218 def update!(**args) @kind = args[:kind] if args.key?(:kind) @queries = args[:queries] if args.key?(:queries) end |