Class: Google::Apis::DatastoreV1::RunQueryResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DatastoreV1::RunQueryResponse
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/datastore_v1/classes.rb,
 generated/google/apis/datastore_v1/representations.rb,
 generated/google/apis/datastore_v1/representations.rb
Overview
The response for Datastore.RunQuery.
Instance Attribute Summary collapse
- 
  
    
      #batch  ⇒ Google::Apis::DatastoreV1::QueryResultBatch 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A batch of results produced by a query. 
- 
  
    
      #query  ⇒ Google::Apis::DatastoreV1::Query 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A query for entities. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ RunQueryResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of RunQueryResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ RunQueryResponse
Returns a new instance of RunQueryResponse
| 1960 1961 1962 | # File 'generated/google/apis/datastore_v1/classes.rb', line 1960 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#batch ⇒ Google::Apis::DatastoreV1::QueryResultBatch
A batch of results produced by a query.
Corresponds to the JSON property batch
| 1953 1954 1955 | # File 'generated/google/apis/datastore_v1/classes.rb', line 1953 def batch @batch end | 
#query ⇒ Google::Apis::DatastoreV1::Query
A query for entities.
Corresponds to the JSON property query
| 1958 1959 1960 | # File 'generated/google/apis/datastore_v1/classes.rb', line 1958 def query @query end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1965 1966 1967 1968 | # File 'generated/google/apis/datastore_v1/classes.rb', line 1965 def update!(**args) @batch = args[:batch] if args.key?(:batch) @query = args[:query] if args.key?(:query) end |