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

com.google.firestore.v1.GetDocumentRequestOrBuilder 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 GetDocumentRequestOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.firestore.v1.GetDocumentRequest)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * 
   * Required. The resource name of the Document to get. In the format:
   * `projects/{project_id}/databases/{database_id}/documents/{document_path}`.
   * 
* * string name = 1 [(.google.api.field_behavior) = REQUIRED]; * * @return The name. */ java.lang.String getName(); /** * * *
   * Required. The resource name of the Document to get. In the format:
   * `projects/{project_id}/databases/{database_id}/documents/{document_path}`.
   * 
* * string name = 1 [(.google.api.field_behavior) = REQUIRED]; * * @return The bytes for name. */ com.google.protobuf.ByteString getNameBytes(); /** * * *
   * The fields to return. If not set, returns all fields.
   *
   * If the document has a field that is not present in this mask, that field
   * will not be returned in the response.
   * 
* * .google.firestore.v1.DocumentMask mask = 2; * * @return Whether the mask field is set. */ boolean hasMask(); /** * * *
   * The fields to return. If not set, returns all fields.
   *
   * If the document has a field that is not present in this mask, that field
   * will not be returned in the response.
   * 
* * .google.firestore.v1.DocumentMask mask = 2; * * @return The mask. */ com.google.firestore.v1.DocumentMask getMask(); /** * * *
   * The fields to return. If not set, returns all fields.
   *
   * If the document has a field that is not present in this mask, that field
   * will not be returned in the response.
   * 
* * .google.firestore.v1.DocumentMask mask = 2; */ com.google.firestore.v1.DocumentMaskOrBuilder getMaskOrBuilder(); /** * * *
   * Reads the document in a transaction.
   * 
* * bytes transaction = 3; * * @return Whether the transaction field is set. */ boolean hasTransaction(); /** * * *
   * Reads the document in a transaction.
   * 
* * bytes transaction = 3; * * @return The transaction. */ com.google.protobuf.ByteString getTransaction(); /** * * *
   * Reads the version of the document at the given time.
   *
   * This must be a microsecond precision timestamp within the past one hour,
   * or if Point-in-Time Recovery is enabled, can additionally be a whole
   * minute timestamp within the past 7 days.
   * 
* * .google.protobuf.Timestamp read_time = 5; * * @return Whether the readTime field is set. */ boolean hasReadTime(); /** * * *
   * Reads the version of the document at the given time.
   *
   * This must be a microsecond precision timestamp within the past one hour,
   * or if Point-in-Time Recovery is enabled, can additionally be a whole
   * minute timestamp within the past 7 days.
   * 
* * .google.protobuf.Timestamp read_time = 5; * * @return The readTime. */ com.google.protobuf.Timestamp getReadTime(); /** * * *
   * Reads the version of the document at the given time.
   *
   * This must be a microsecond precision timestamp within the past one hour,
   * or if Point-in-Time Recovery is enabled, can additionally be a whole
   * minute timestamp within the past 7 days.
   * 
* * .google.protobuf.Timestamp read_time = 5; */ com.google.protobuf.TimestampOrBuilder getReadTimeOrBuilder(); com.google.firestore.v1.GetDocumentRequest.ConsistencySelectorCase getConsistencySelectorCase(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy