com.google.firestore.v1.BatchGetDocumentsResponseOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-firestore-v1 Show documentation
Show all versions of proto-google-cloud-firestore-v1 Show documentation
PROTO library for proto-google-cloud-firestore-v1
/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/firestore/v1/firestore.proto
// Protobuf Java Version: 3.25.4
package com.google.firestore.v1;
public interface BatchGetDocumentsResponseOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.firestore.v1.BatchGetDocumentsResponse)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* A document that was requested.
*
*
* .google.firestore.v1.Document found = 1;
*
* @return Whether the found field is set.
*/
boolean hasFound();
/**
*
*
*
* A document that was requested.
*
*
* .google.firestore.v1.Document found = 1;
*
* @return The found.
*/
com.google.firestore.v1.Document getFound();
/**
*
*
*
* A document that was requested.
*
*
* .google.firestore.v1.Document found = 1;
*/
com.google.firestore.v1.DocumentOrBuilder getFoundOrBuilder();
/**
*
*
*
* A document name that was requested but does not exist. In the format:
* `projects/{project_id}/databases/{database_id}/documents/{document_path}`.
*
*
* string missing = 2;
*
* @return Whether the missing field is set.
*/
boolean hasMissing();
/**
*
*
*
* A document name that was requested but does not exist. In the format:
* `projects/{project_id}/databases/{database_id}/documents/{document_path}`.
*
*
* string missing = 2;
*
* @return The missing.
*/
java.lang.String getMissing();
/**
*
*
*
* A document name that was requested but does not exist. In the format:
* `projects/{project_id}/databases/{database_id}/documents/{document_path}`.
*
*
* string missing = 2;
*
* @return The bytes for missing.
*/
com.google.protobuf.ByteString getMissingBytes();
/**
*
*
*
* The transaction that was started as part of this request.
* Will only be set in the first response, and only if
* [BatchGetDocumentsRequest.new_transaction][google.firestore.v1.BatchGetDocumentsRequest.new_transaction]
* was set in the request.
*
*
* bytes transaction = 3;
*
* @return The transaction.
*/
com.google.protobuf.ByteString getTransaction();
/**
*
*
*
* The time at which the document was read.
* This may be monotically increasing, in this case the previous documents in
* the result stream are guaranteed not to have changed between their
* read_time and this one.
*
*
* .google.protobuf.Timestamp read_time = 4;
*
* @return Whether the readTime field is set.
*/
boolean hasReadTime();
/**
*
*
*
* The time at which the document was read.
* This may be monotically increasing, in this case the previous documents in
* the result stream are guaranteed not to have changed between their
* read_time and this one.
*
*
* .google.protobuf.Timestamp read_time = 4;
*
* @return The readTime.
*/
com.google.protobuf.Timestamp getReadTime();
/**
*
*
*
* The time at which the document was read.
* This may be monotically increasing, in this case the previous documents in
* the result stream are guaranteed not to have changed between their
* read_time and this one.
*
*
* .google.protobuf.Timestamp read_time = 4;
*/
com.google.protobuf.TimestampOrBuilder getReadTimeOrBuilder();
com.google.firestore.v1.BatchGetDocumentsResponse.ResultCase getResultCase();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy