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

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ RunQueryResponse

Returns a new instance of RunQueryResponse.



2064
2065
2066
# File 'generated/google/apis/datastore_v1/classes.rb', line 2064

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



2057
2058
2059
# File 'generated/google/apis/datastore_v1/classes.rb', line 2057

def batch
  @batch
end

#queryGoogle::Apis::DatastoreV1::Query

A query for entities. Corresponds to the JSON property query



2062
2063
2064
# File 'generated/google/apis/datastore_v1/classes.rb', line 2062

def query
  @query
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2069
2070
2071
2072
# File 'generated/google/apis/datastore_v1/classes.rb', line 2069

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