public interface RunQueryResponseOrBuilder extends MessageOrBuilder
Modifier and Type | Method and Description |
---|---|
Document |
getDocument()
A query result.
|
DocumentOrBuilder |
getDocumentOrBuilder()
A query result.
|
Timestamp |
getReadTime()
The time at which the document was read.
|
TimestampOrBuilder |
getReadTimeOrBuilder()
The time at which the document was read.
|
int |
getSkippedResults()
The number of results that have been skipped due to an offset between
the last response and the current response.
|
ByteString |
getTransaction()
The transaction that was started as part of this request.
|
boolean |
hasDocument()
A query result.
|
boolean |
hasReadTime()
The time at which the document was read.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
isInitialized
ByteString getTransaction()
The transaction that was started as part of this request. Can only be set in the first response, and only if [RunQueryRequest.new_transaction][google.firestore.v1beta1.RunQueryRequest.new_transaction] was set in the request. If set, no other fields will be set in this response.
bytes transaction = 2;
boolean hasDocument()
A query result. Not set when reporting partial progress.
.google.firestore.v1beta1.Document document = 1;
Document getDocument()
A query result. Not set when reporting partial progress.
.google.firestore.v1beta1.Document document = 1;
DocumentOrBuilder getDocumentOrBuilder()
A query result. Not set when reporting partial progress.
.google.firestore.v1beta1.Document document = 1;
boolean hasReadTime()
The time at which the document was read. This may be monotonically increasing; in this case, the previous documents in the result stream are guaranteed not to have changed between their `read_time` and this one. If the query returns no results, a response with `read_time` and no `document` will be sent, and this represents the time at which the query was run.
.google.protobuf.Timestamp read_time = 3;
Timestamp getReadTime()
The time at which the document was read. This may be monotonically increasing; in this case, the previous documents in the result stream are guaranteed not to have changed between their `read_time` and this one. If the query returns no results, a response with `read_time` and no `document` will be sent, and this represents the time at which the query was run.
.google.protobuf.Timestamp read_time = 3;
TimestampOrBuilder getReadTimeOrBuilder()
The time at which the document was read. This may be monotonically increasing; in this case, the previous documents in the result stream are guaranteed not to have changed between their `read_time` and this one. If the query returns no results, a response with `read_time` and no `document` will be sent, and this represents the time at which the query was run.
.google.protobuf.Timestamp read_time = 3;
int getSkippedResults()
The number of results that have been skipped due to an offset between the last response and the current response.
int32 skipped_results = 4;