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
| 209 210 211 | # File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 209 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
| 202 203 204 | # File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 202 def kind @kind end | 
#queries ⇒ Array<Google::Apis::DoubleclickbidmanagerV1::Query>
Retrieved queries.
Corresponds to the JSON property queries
| 207 208 209 | # File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 207 def queries @queries end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 214 215 216 217 | # File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 214 def update!(**args) @kind = args[:kind] if args.key?(:kind) @queries = args[:queries] if args.key?(:queries) end |