Class: Google::Apis::DatastoreV1beta3::RunQueryResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/datastore_v1beta3/classes.rb,
lib/google/apis/datastore_v1beta3/representations.rb,
lib/google/apis/datastore_v1beta3/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.



1755
1756
1757
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1755

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

Instance Attribute Details

#batchGoogle::Apis::DatastoreV1beta3::QueryResultBatch

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



1748
1749
1750
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1748

def batch
  @batch
end

#queryGoogle::Apis::DatastoreV1beta3::Query

A query for entities. Corresponds to the JSON property query



1753
1754
1755
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1753

def query
  @query
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1760
1761
1762
1763
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1760

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