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



946
947
948
# File 'generated/google/apis/datastore_v1/classes.rb', line 946

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



939
940
941
# File 'generated/google/apis/datastore_v1/classes.rb', line 939

def batch
  @batch
end

#queryGoogle::Apis::DatastoreV1::Query

A query for entities. Corresponds to the JSON property query



944
945
946
# File 'generated/google/apis/datastore_v1/classes.rb', line 944

def query
  @query
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



951
952
953
954
# File 'generated/google/apis/datastore_v1/classes.rb', line 951

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