Show / Hide Table of Contents

Class RunQueryResponse

The response for Datastore.RunQuery.

Inheritance
System.Object
RunQueryResponse
Implements
IDirectResponseSchema
Namespace: Google.Apis.Datastore.v1beta3.Data
Assembly: Google.Apis.Datastore.v1beta3.dll
Syntax
public class RunQueryResponse : object, IDirectResponseSchema

Properties

Batch

A batch of query results (always present).

Declaration
public virtual QueryResultBatch Batch { get; set; }
Property Value
Type Description
QueryResultBatch

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Query

The parsed form of the GqlQuery from the request, if it was set.

Declaration
public virtual Query Query { get; set; }
Property Value
Type Description
Query

Implements

IDirectResponseSchema
Back to top