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

com.google.firestore.bundle.NamedQueryOrBuilder Maven / Gradle / Ivy

There is a newer version: 3.26.3
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/bundle/bundle.proto

// Protobuf Java Version: 3.25.3
package com.google.firestore.bundle;

public interface NamedQueryOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.firestore.bundle.NamedQuery)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * 
   * Name of the query, such that client can use the name to load this query
   * from bundle, and resume from when the query results are materialized
   * into this bundle.
   * 
* * string name = 1; * * @return The name. */ java.lang.String getName(); /** * * *
   * Name of the query, such that client can use the name to load this query
   * from bundle, and resume from when the query results are materialized
   * into this bundle.
   * 
* * string name = 1; * * @return The bytes for name. */ com.google.protobuf.ByteString getNameBytes(); /** * * *
   * The query saved in the bundle.
   * 
* * .google.firestore.bundle.BundledQuery bundled_query = 2; * * @return Whether the bundledQuery field is set. */ boolean hasBundledQuery(); /** * * *
   * The query saved in the bundle.
   * 
* * .google.firestore.bundle.BundledQuery bundled_query = 2; * * @return The bundledQuery. */ com.google.firestore.bundle.BundledQuery getBundledQuery(); /** * * *
   * The query saved in the bundle.
   * 
* * .google.firestore.bundle.BundledQuery bundled_query = 2; */ com.google.firestore.bundle.BundledQueryOrBuilder getBundledQueryOrBuilder(); /** * * *
   * The read time of the query, when it is used to build the bundle. This is useful to
   * resume the query from the bundle, once it is loaded by client SDKs.
   * 
* * .google.protobuf.Timestamp read_time = 3; * * @return Whether the readTime field is set. */ boolean hasReadTime(); /** * * *
   * The read time of the query, when it is used to build the bundle. This is useful to
   * resume the query from the bundle, once it is loaded by client SDKs.
   * 
* * .google.protobuf.Timestamp read_time = 3; * * @return The readTime. */ com.google.protobuf.Timestamp getReadTime(); /** * * *
   * The read time of the query, when it is used to build the bundle. This is useful to
   * resume the query from the bundle, once it is loaded by client SDKs.
   * 
* * .google.protobuf.Timestamp read_time = 3; */ com.google.protobuf.TimestampOrBuilder getReadTimeOrBuilder(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy