All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.firestore.v1.WriteResponseOrBuilder Maven / Gradle / Ivy

There is a newer version: 3.29.1
Show newest version
/*
 * 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 WriteResponseOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.firestore.v1.WriteResponse)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * 
   * The ID of the stream.
   * Only set on the first message, when a new stream was created.
   * 
* * string stream_id = 1; * * @return The streamId. */ java.lang.String getStreamId(); /** * * *
   * The ID of the stream.
   * Only set on the first message, when a new stream was created.
   * 
* * string stream_id = 1; * * @return The bytes for streamId. */ com.google.protobuf.ByteString getStreamIdBytes(); /** * * *
   * A token that represents the position of this response in the stream.
   * This can be used by a client to resume the stream at this point.
   *
   * This field is always set.
   * 
* * bytes stream_token = 2; * * @return The streamToken. */ com.google.protobuf.ByteString getStreamToken(); /** * * *
   * The result of applying the writes.
   *
   * This i-th write result corresponds to the i-th write in the
   * request.
   * 
* * repeated .google.firestore.v1.WriteResult write_results = 3; */ java.util.List getWriteResultsList(); /** * * *
   * The result of applying the writes.
   *
   * This i-th write result corresponds to the i-th write in the
   * request.
   * 
* * repeated .google.firestore.v1.WriteResult write_results = 3; */ com.google.firestore.v1.WriteResult getWriteResults(int index); /** * * *
   * The result of applying the writes.
   *
   * This i-th write result corresponds to the i-th write in the
   * request.
   * 
* * repeated .google.firestore.v1.WriteResult write_results = 3; */ int getWriteResultsCount(); /** * * *
   * The result of applying the writes.
   *
   * This i-th write result corresponds to the i-th write in the
   * request.
   * 
* * repeated .google.firestore.v1.WriteResult write_results = 3; */ java.util.List getWriteResultsOrBuilderList(); /** * * *
   * The result of applying the writes.
   *
   * This i-th write result corresponds to the i-th write in the
   * request.
   * 
* * repeated .google.firestore.v1.WriteResult write_results = 3; */ com.google.firestore.v1.WriteResultOrBuilder getWriteResultsOrBuilder(int index); /** * * *
   * The time at which the commit occurred. Any read with an equal or greater
   * `read_time` is guaranteed to see the effects of the write.
   * 
* * .google.protobuf.Timestamp commit_time = 4; * * @return Whether the commitTime field is set. */ boolean hasCommitTime(); /** * * *
   * The time at which the commit occurred. Any read with an equal or greater
   * `read_time` is guaranteed to see the effects of the write.
   * 
* * .google.protobuf.Timestamp commit_time = 4; * * @return The commitTime. */ com.google.protobuf.Timestamp getCommitTime(); /** * * *
   * The time at which the commit occurred. Any read with an equal or greater
   * `read_time` is guaranteed to see the effects of the write.
   * 
* * .google.protobuf.Timestamp commit_time = 4; */ com.google.protobuf.TimestampOrBuilder getCommitTimeOrBuilder(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy