Class: Google::Apis::DatastoreV1::RunQueryResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/datastore_v1/classes.rb,
lib/google/apis/datastore_v1/representations.rb,
lib/google/apis/datastore_v1/representations.rb

Overview

The response for Datastore.RunQuery.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RunQueryResponse

Returns a new instance of RunQueryResponse.



2159
2160
2161
# File 'lib/google/apis/datastore_v1/classes.rb', line 2159

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#batchGoogle::Apis::DatastoreV1::QueryResultBatch

A batch of results produced by a query. Corresponds to the JSON property batch



2152
2153
2154
# File 'lib/google/apis/datastore_v1/classes.rb', line 2152

def batch
  @batch
end

#queryGoogle::Apis::DatastoreV1::Query

A query for entities. Corresponds to the JSON property query



2157
2158
2159
# File 'lib/google/apis/datastore_v1/classes.rb', line 2157

def query
  @query
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2164
2165
2166
2167
# File 'lib/google/apis/datastore_v1/classes.rb', line 2164

def update!(**args)
  @batch = args[:batch] if args.key?(:batch)
  @query = args[:query] if args.key?(:query)
end