| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356 |
- /*
- * 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
- *
- * http://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.
- */
- /* Automatically generated nanopb header */
- /* Generated by nanopb-0.3.9.8 */
- #ifndef PB_GOOGLE_FIRESTORE_V1_QUERY_NANOPB_H_INCLUDED
- #define PB_GOOGLE_FIRESTORE_V1_QUERY_NANOPB_H_INCLUDED
- #include <pb.h>
- #include "google/firestore/v1/document.nanopb.h"
- #include "google/protobuf/wrappers.nanopb.h"
- #include <string>
- namespace firebase {
- namespace firestore {
- /* @@protoc_insertion_point(includes) */
- #if PB_PROTO_HEADER_VERSION != 30
- #error Regenerate this file with the current version of nanopb generator.
- #endif
- /* Enum definitions */
- typedef enum _google_firestore_v1_StructuredQuery_Direction {
- google_firestore_v1_StructuredQuery_Direction_DIRECTION_UNSPECIFIED = 0,
- google_firestore_v1_StructuredQuery_Direction_ASCENDING = 1,
- google_firestore_v1_StructuredQuery_Direction_DESCENDING = 2
- } google_firestore_v1_StructuredQuery_Direction;
- #define _google_firestore_v1_StructuredQuery_Direction_MIN google_firestore_v1_StructuredQuery_Direction_DIRECTION_UNSPECIFIED
- #define _google_firestore_v1_StructuredQuery_Direction_MAX google_firestore_v1_StructuredQuery_Direction_DESCENDING
- #define _google_firestore_v1_StructuredQuery_Direction_ARRAYSIZE ((google_firestore_v1_StructuredQuery_Direction)(google_firestore_v1_StructuredQuery_Direction_DESCENDING+1))
- typedef enum _google_firestore_v1_StructuredQuery_CompositeFilter_Operator {
- google_firestore_v1_StructuredQuery_CompositeFilter_Operator_OPERATOR_UNSPECIFIED = 0,
- google_firestore_v1_StructuredQuery_CompositeFilter_Operator_AND = 1,
- google_firestore_v1_StructuredQuery_CompositeFilter_Operator_OR = 2
- } google_firestore_v1_StructuredQuery_CompositeFilter_Operator;
- #define _google_firestore_v1_StructuredQuery_CompositeFilter_Operator_MIN google_firestore_v1_StructuredQuery_CompositeFilter_Operator_OPERATOR_UNSPECIFIED
- #define _google_firestore_v1_StructuredQuery_CompositeFilter_Operator_MAX google_firestore_v1_StructuredQuery_CompositeFilter_Operator_OR
- #define _google_firestore_v1_StructuredQuery_CompositeFilter_Operator_ARRAYSIZE ((google_firestore_v1_StructuredQuery_CompositeFilter_Operator)(google_firestore_v1_StructuredQuery_CompositeFilter_Operator_OR+1))
- typedef enum _google_firestore_v1_StructuredQuery_FieldFilter_Operator {
- google_firestore_v1_StructuredQuery_FieldFilter_Operator_OPERATOR_UNSPECIFIED = 0,
- google_firestore_v1_StructuredQuery_FieldFilter_Operator_LESS_THAN = 1,
- google_firestore_v1_StructuredQuery_FieldFilter_Operator_LESS_THAN_OR_EQUAL = 2,
- google_firestore_v1_StructuredQuery_FieldFilter_Operator_GREATER_THAN = 3,
- google_firestore_v1_StructuredQuery_FieldFilter_Operator_GREATER_THAN_OR_EQUAL = 4,
- google_firestore_v1_StructuredQuery_FieldFilter_Operator_EQUAL = 5,
- google_firestore_v1_StructuredQuery_FieldFilter_Operator_NOT_EQUAL = 6,
- google_firestore_v1_StructuredQuery_FieldFilter_Operator_ARRAY_CONTAINS = 7,
- google_firestore_v1_StructuredQuery_FieldFilter_Operator_IN = 8,
- google_firestore_v1_StructuredQuery_FieldFilter_Operator_ARRAY_CONTAINS_ANY = 9,
- google_firestore_v1_StructuredQuery_FieldFilter_Operator_NOT_IN = 10
- } google_firestore_v1_StructuredQuery_FieldFilter_Operator;
- #define _google_firestore_v1_StructuredQuery_FieldFilter_Operator_MIN google_firestore_v1_StructuredQuery_FieldFilter_Operator_OPERATOR_UNSPECIFIED
- #define _google_firestore_v1_StructuredQuery_FieldFilter_Operator_MAX google_firestore_v1_StructuredQuery_FieldFilter_Operator_NOT_IN
- #define _google_firestore_v1_StructuredQuery_FieldFilter_Operator_ARRAYSIZE ((google_firestore_v1_StructuredQuery_FieldFilter_Operator)(google_firestore_v1_StructuredQuery_FieldFilter_Operator_NOT_IN+1))
- typedef enum _google_firestore_v1_StructuredQuery_UnaryFilter_Operator {
- google_firestore_v1_StructuredQuery_UnaryFilter_Operator_OPERATOR_UNSPECIFIED = 0,
- google_firestore_v1_StructuredQuery_UnaryFilter_Operator_IS_NAN = 2,
- google_firestore_v1_StructuredQuery_UnaryFilter_Operator_IS_NULL = 3,
- google_firestore_v1_StructuredQuery_UnaryFilter_Operator_IS_NOT_NAN = 4,
- google_firestore_v1_StructuredQuery_UnaryFilter_Operator_IS_NOT_NULL = 5
- } google_firestore_v1_StructuredQuery_UnaryFilter_Operator;
- #define _google_firestore_v1_StructuredQuery_UnaryFilter_Operator_MIN google_firestore_v1_StructuredQuery_UnaryFilter_Operator_OPERATOR_UNSPECIFIED
- #define _google_firestore_v1_StructuredQuery_UnaryFilter_Operator_MAX google_firestore_v1_StructuredQuery_UnaryFilter_Operator_IS_NOT_NULL
- #define _google_firestore_v1_StructuredQuery_UnaryFilter_Operator_ARRAYSIZE ((google_firestore_v1_StructuredQuery_UnaryFilter_Operator)(google_firestore_v1_StructuredQuery_UnaryFilter_Operator_IS_NOT_NULL+1))
- /* Struct definitions */
- typedef struct _google_firestore_v1_StructuredQuery_FieldReference {
- pb_bytes_array_t *field_path;
- std::string ToString(int indent = 0) const;
- /* @@protoc_insertion_point(struct:google_firestore_v1_StructuredQuery_FieldReference) */
- } google_firestore_v1_StructuredQuery_FieldReference;
- typedef struct _google_firestore_v1_StructuredQuery_Projection {
- pb_size_t fields_count;
- struct _google_firestore_v1_StructuredQuery_FieldReference *fields;
- std::string ToString(int indent = 0) const;
- /* @@protoc_insertion_point(struct:google_firestore_v1_StructuredQuery_Projection) */
- } google_firestore_v1_StructuredQuery_Projection;
- typedef struct _google_firestore_v1_Cursor {
- pb_size_t values_count;
- struct _google_firestore_v1_Value *values;
- bool before;
- std::string ToString(int indent = 0) const;
- /* @@protoc_insertion_point(struct:google_firestore_v1_Cursor) */
- } google_firestore_v1_Cursor;
- typedef struct _google_firestore_v1_StructuredAggregationQuery_Aggregation_Avg {
- google_firestore_v1_StructuredQuery_FieldReference field;
- std::string ToString(int indent = 0) const;
- /* @@protoc_insertion_point(struct:google_firestore_v1_StructuredAggregationQuery_Aggregation_Avg) */
- } google_firestore_v1_StructuredAggregationQuery_Aggregation_Avg;
- typedef struct _google_firestore_v1_StructuredAggregationQuery_Aggregation_Count {
- google_protobuf_Int64Value up_to;
- std::string ToString(int indent = 0) const;
- /* @@protoc_insertion_point(struct:google_firestore_v1_StructuredAggregationQuery_Aggregation_Count) */
- } google_firestore_v1_StructuredAggregationQuery_Aggregation_Count;
- typedef struct _google_firestore_v1_StructuredAggregationQuery_Aggregation_Sum {
- google_firestore_v1_StructuredQuery_FieldReference field;
- std::string ToString(int indent = 0) const;
- /* @@protoc_insertion_point(struct:google_firestore_v1_StructuredAggregationQuery_Aggregation_Sum) */
- } google_firestore_v1_StructuredAggregationQuery_Aggregation_Sum;
- typedef struct _google_firestore_v1_StructuredQuery_CollectionSelector {
- pb_bytes_array_t *collection_id;
- bool all_descendants;
- std::string ToString(int indent = 0) const;
- /* @@protoc_insertion_point(struct:google_firestore_v1_StructuredQuery_CollectionSelector) */
- } google_firestore_v1_StructuredQuery_CollectionSelector;
- typedef struct _google_firestore_v1_StructuredQuery_CompositeFilter {
- google_firestore_v1_StructuredQuery_CompositeFilter_Operator op;
- pb_size_t filters_count;
- struct _google_firestore_v1_StructuredQuery_Filter *filters;
- std::string ToString(int indent = 0) const;
- /* @@protoc_insertion_point(struct:google_firestore_v1_StructuredQuery_CompositeFilter) */
- } google_firestore_v1_StructuredQuery_CompositeFilter;
- typedef struct _google_firestore_v1_StructuredQuery_FieldFilter {
- google_firestore_v1_StructuredQuery_FieldReference field;
- google_firestore_v1_StructuredQuery_FieldFilter_Operator op;
- google_firestore_v1_Value value;
- std::string ToString(int indent = 0) const;
- /* @@protoc_insertion_point(struct:google_firestore_v1_StructuredQuery_FieldFilter) */
- } google_firestore_v1_StructuredQuery_FieldFilter;
- typedef struct _google_firestore_v1_StructuredQuery_Order {
- google_firestore_v1_StructuredQuery_FieldReference field;
- google_firestore_v1_StructuredQuery_Direction direction;
- std::string ToString(int indent = 0) const;
- /* @@protoc_insertion_point(struct:google_firestore_v1_StructuredQuery_Order) */
- } google_firestore_v1_StructuredQuery_Order;
- typedef struct _google_firestore_v1_StructuredQuery_UnaryFilter {
- google_firestore_v1_StructuredQuery_UnaryFilter_Operator op;
- pb_size_t which_operand_type;
- union {
- google_firestore_v1_StructuredQuery_FieldReference field;
- };
- std::string ToString(int indent = 0) const;
- /* @@protoc_insertion_point(struct:google_firestore_v1_StructuredQuery_UnaryFilter) */
- } google_firestore_v1_StructuredQuery_UnaryFilter;
- typedef struct _google_firestore_v1_StructuredAggregationQuery_Aggregation {
- pb_size_t which_operator;
- union {
- google_firestore_v1_StructuredAggregationQuery_Aggregation_Count count;
- google_firestore_v1_StructuredAggregationQuery_Aggregation_Sum sum;
- google_firestore_v1_StructuredAggregationQuery_Aggregation_Avg avg;
- };
- pb_bytes_array_t *alias;
- std::string ToString(int indent = 0) const;
- /* @@protoc_insertion_point(struct:google_firestore_v1_StructuredAggregationQuery_Aggregation) */
- } google_firestore_v1_StructuredAggregationQuery_Aggregation;
- typedef struct _google_firestore_v1_StructuredQuery_Filter {
- pb_size_t which_filter_type;
- union {
- google_firestore_v1_StructuredQuery_CompositeFilter composite_filter;
- google_firestore_v1_StructuredQuery_FieldFilter field_filter;
- google_firestore_v1_StructuredQuery_UnaryFilter unary_filter;
- };
- std::string ToString(int indent = 0) const;
- /* @@protoc_insertion_point(struct:google_firestore_v1_StructuredQuery_Filter) */
- } google_firestore_v1_StructuredQuery_Filter;
- typedef struct _google_firestore_v1_StructuredQuery {
- google_firestore_v1_StructuredQuery_Projection select;
- pb_size_t from_count;
- struct _google_firestore_v1_StructuredQuery_CollectionSelector *from;
- google_firestore_v1_StructuredQuery_Filter where;
- pb_size_t order_by_count;
- struct _google_firestore_v1_StructuredQuery_Order *order_by;
- bool has_limit;
- google_protobuf_Int32Value limit;
- int32_t offset;
- google_firestore_v1_Cursor start_at;
- google_firestore_v1_Cursor end_at;
- std::string ToString(int indent = 0) const;
- /* @@protoc_insertion_point(struct:google_firestore_v1_StructuredQuery) */
- } google_firestore_v1_StructuredQuery;
- typedef struct _google_firestore_v1_StructuredAggregationQuery {
- pb_size_t which_query_type;
- union {
- google_firestore_v1_StructuredQuery structured_query;
- };
- pb_size_t aggregations_count;
- struct _google_firestore_v1_StructuredAggregationQuery_Aggregation *aggregations;
- std::string ToString(int indent = 0) const;
- /* @@protoc_insertion_point(struct:google_firestore_v1_StructuredAggregationQuery) */
- } google_firestore_v1_StructuredAggregationQuery;
- /* Default values for struct fields */
- /* Initializer values for message structs */
- #define google_firestore_v1_StructuredQuery_init_default {google_firestore_v1_StructuredQuery_Projection_init_default, 0, NULL, google_firestore_v1_StructuredQuery_Filter_init_default, 0, NULL, false, google_protobuf_Int32Value_init_default, 0, google_firestore_v1_Cursor_init_default, google_firestore_v1_Cursor_init_default}
- #define google_firestore_v1_StructuredQuery_CollectionSelector_init_default {NULL, 0}
- #define google_firestore_v1_StructuredQuery_Filter_init_default {0, {google_firestore_v1_StructuredQuery_CompositeFilter_init_default}}
- #define google_firestore_v1_StructuredQuery_CompositeFilter_init_default {_google_firestore_v1_StructuredQuery_CompositeFilter_Operator_MIN, 0, NULL}
- #define google_firestore_v1_StructuredQuery_FieldFilter_init_default {google_firestore_v1_StructuredQuery_FieldReference_init_default, _google_firestore_v1_StructuredQuery_FieldFilter_Operator_MIN, google_firestore_v1_Value_init_default}
- #define google_firestore_v1_StructuredQuery_UnaryFilter_init_default {_google_firestore_v1_StructuredQuery_UnaryFilter_Operator_MIN, 0, {google_firestore_v1_StructuredQuery_FieldReference_init_default}}
- #define google_firestore_v1_StructuredQuery_Order_init_default {google_firestore_v1_StructuredQuery_FieldReference_init_default, _google_firestore_v1_StructuredQuery_Direction_MIN}
- #define google_firestore_v1_StructuredQuery_FieldReference_init_default {NULL}
- #define google_firestore_v1_StructuredQuery_Projection_init_default {0, NULL}
- #define google_firestore_v1_StructuredAggregationQuery_init_default {0, {google_firestore_v1_StructuredQuery_init_default}, 0, NULL}
- #define google_firestore_v1_StructuredAggregationQuery_Aggregation_init_default {0, {google_firestore_v1_StructuredAggregationQuery_Aggregation_Count_init_default}, NULL}
- #define google_firestore_v1_StructuredAggregationQuery_Aggregation_Count_init_default {google_protobuf_Int64Value_init_default}
- #define google_firestore_v1_StructuredAggregationQuery_Aggregation_Sum_init_default {google_firestore_v1_StructuredQuery_FieldReference_init_default}
- #define google_firestore_v1_StructuredAggregationQuery_Aggregation_Avg_init_default {google_firestore_v1_StructuredQuery_FieldReference_init_default}
- #define google_firestore_v1_Cursor_init_default {0, NULL, 0}
- #define google_firestore_v1_StructuredQuery_init_zero {google_firestore_v1_StructuredQuery_Projection_init_zero, 0, NULL, google_firestore_v1_StructuredQuery_Filter_init_zero, 0, NULL, false, google_protobuf_Int32Value_init_zero, 0, google_firestore_v1_Cursor_init_zero, google_firestore_v1_Cursor_init_zero}
- #define google_firestore_v1_StructuredQuery_CollectionSelector_init_zero {NULL, 0}
- #define google_firestore_v1_StructuredQuery_Filter_init_zero {0, {google_firestore_v1_StructuredQuery_CompositeFilter_init_zero}}
- #define google_firestore_v1_StructuredQuery_CompositeFilter_init_zero {_google_firestore_v1_StructuredQuery_CompositeFilter_Operator_MIN, 0, NULL}
- #define google_firestore_v1_StructuredQuery_FieldFilter_init_zero {google_firestore_v1_StructuredQuery_FieldReference_init_zero, _google_firestore_v1_StructuredQuery_FieldFilter_Operator_MIN, google_firestore_v1_Value_init_zero}
- #define google_firestore_v1_StructuredQuery_UnaryFilter_init_zero {_google_firestore_v1_StructuredQuery_UnaryFilter_Operator_MIN, 0, {google_firestore_v1_StructuredQuery_FieldReference_init_zero}}
- #define google_firestore_v1_StructuredQuery_Order_init_zero {google_firestore_v1_StructuredQuery_FieldReference_init_zero, _google_firestore_v1_StructuredQuery_Direction_MIN}
- #define google_firestore_v1_StructuredQuery_FieldReference_init_zero {NULL}
- #define google_firestore_v1_StructuredQuery_Projection_init_zero {0, NULL}
- #define google_firestore_v1_StructuredAggregationQuery_init_zero {0, {google_firestore_v1_StructuredQuery_init_zero}, 0, NULL}
- #define google_firestore_v1_StructuredAggregationQuery_Aggregation_init_zero {0, {google_firestore_v1_StructuredAggregationQuery_Aggregation_Count_init_zero}, NULL}
- #define google_firestore_v1_StructuredAggregationQuery_Aggregation_Count_init_zero {google_protobuf_Int64Value_init_zero}
- #define google_firestore_v1_StructuredAggregationQuery_Aggregation_Sum_init_zero {google_firestore_v1_StructuredQuery_FieldReference_init_zero}
- #define google_firestore_v1_StructuredAggregationQuery_Aggregation_Avg_init_zero {google_firestore_v1_StructuredQuery_FieldReference_init_zero}
- #define google_firestore_v1_Cursor_init_zero {0, NULL, 0}
- /* Field tags (for use in manual encoding/decoding) */
- #define google_firestore_v1_StructuredQuery_FieldReference_field_path_tag 2
- #define google_firestore_v1_StructuredQuery_Projection_fields_tag 2
- #define google_firestore_v1_Cursor_values_tag 1
- #define google_firestore_v1_Cursor_before_tag 2
- #define google_firestore_v1_StructuredAggregationQuery_Aggregation_Avg_field_tag 1
- #define google_firestore_v1_StructuredAggregationQuery_Aggregation_Count_up_to_tag 1
- #define google_firestore_v1_StructuredAggregationQuery_Aggregation_Sum_field_tag 1
- #define google_firestore_v1_StructuredQuery_CollectionSelector_collection_id_tag 2
- #define google_firestore_v1_StructuredQuery_CollectionSelector_all_descendants_tag 3
- #define google_firestore_v1_StructuredQuery_CompositeFilter_op_tag 1
- #define google_firestore_v1_StructuredQuery_CompositeFilter_filters_tag 2
- #define google_firestore_v1_StructuredQuery_FieldFilter_field_tag 1
- #define google_firestore_v1_StructuredQuery_FieldFilter_op_tag 2
- #define google_firestore_v1_StructuredQuery_FieldFilter_value_tag 3
- #define google_firestore_v1_StructuredQuery_Order_field_tag 1
- #define google_firestore_v1_StructuredQuery_Order_direction_tag 2
- #define google_firestore_v1_StructuredQuery_UnaryFilter_field_tag 2
- #define google_firestore_v1_StructuredQuery_UnaryFilter_op_tag 1
- #define google_firestore_v1_StructuredAggregationQuery_Aggregation_count_tag 1
- #define google_firestore_v1_StructuredAggregationQuery_Aggregation_sum_tag 2
- #define google_firestore_v1_StructuredAggregationQuery_Aggregation_avg_tag 3
- #define google_firestore_v1_StructuredAggregationQuery_Aggregation_alias_tag 7
- #define google_firestore_v1_StructuredQuery_Filter_composite_filter_tag 1
- #define google_firestore_v1_StructuredQuery_Filter_field_filter_tag 2
- #define google_firestore_v1_StructuredQuery_Filter_unary_filter_tag 3
- #define google_firestore_v1_StructuredQuery_select_tag 1
- #define google_firestore_v1_StructuredQuery_from_tag 2
- #define google_firestore_v1_StructuredQuery_where_tag 3
- #define google_firestore_v1_StructuredQuery_order_by_tag 4
- #define google_firestore_v1_StructuredQuery_start_at_tag 7
- #define google_firestore_v1_StructuredQuery_end_at_tag 8
- #define google_firestore_v1_StructuredQuery_offset_tag 6
- #define google_firestore_v1_StructuredQuery_limit_tag 5
- #define google_firestore_v1_StructuredAggregationQuery_structured_query_tag 1
- #define google_firestore_v1_StructuredAggregationQuery_aggregations_tag 3
- /* Struct field encoding specification for nanopb */
- extern const pb_field_t google_firestore_v1_StructuredQuery_fields[9];
- extern const pb_field_t google_firestore_v1_StructuredQuery_CollectionSelector_fields[3];
- extern const pb_field_t google_firestore_v1_StructuredQuery_Filter_fields[4];
- extern const pb_field_t google_firestore_v1_StructuredQuery_CompositeFilter_fields[3];
- extern const pb_field_t google_firestore_v1_StructuredQuery_FieldFilter_fields[4];
- extern const pb_field_t google_firestore_v1_StructuredQuery_UnaryFilter_fields[3];
- extern const pb_field_t google_firestore_v1_StructuredQuery_Order_fields[3];
- extern const pb_field_t google_firestore_v1_StructuredQuery_FieldReference_fields[2];
- extern const pb_field_t google_firestore_v1_StructuredQuery_Projection_fields[2];
- extern const pb_field_t google_firestore_v1_StructuredAggregationQuery_fields[3];
- extern const pb_field_t google_firestore_v1_StructuredAggregationQuery_Aggregation_fields[5];
- extern const pb_field_t google_firestore_v1_StructuredAggregationQuery_Aggregation_Count_fields[2];
- extern const pb_field_t google_firestore_v1_StructuredAggregationQuery_Aggregation_Sum_fields[2];
- extern const pb_field_t google_firestore_v1_StructuredAggregationQuery_Aggregation_Avg_fields[2];
- extern const pb_field_t google_firestore_v1_Cursor_fields[3];
- /* Maximum encoded size of messages (where known) */
- /* google_firestore_v1_StructuredQuery_size depends on runtime parameters */
- /* google_firestore_v1_StructuredQuery_CollectionSelector_size depends on runtime parameters */
- /* google_firestore_v1_StructuredQuery_Filter_size depends on runtime parameters */
- /* google_firestore_v1_StructuredQuery_CompositeFilter_size depends on runtime parameters */
- /* google_firestore_v1_StructuredQuery_FieldFilter_size depends on runtime parameters */
- /* google_firestore_v1_StructuredQuery_UnaryFilter_size depends on runtime parameters */
- /* google_firestore_v1_StructuredQuery_Order_size depends on runtime parameters */
- /* google_firestore_v1_StructuredQuery_FieldReference_size depends on runtime parameters */
- /* google_firestore_v1_StructuredQuery_Projection_size depends on runtime parameters */
- /* google_firestore_v1_StructuredAggregationQuery_size depends on runtime parameters */
- /* google_firestore_v1_StructuredAggregationQuery_Aggregation_size depends on runtime parameters */
- #define google_firestore_v1_StructuredAggregationQuery_Aggregation_Count_size 13
- /* google_firestore_v1_StructuredAggregationQuery_Aggregation_Sum_size depends on runtime parameters */
- /* google_firestore_v1_StructuredAggregationQuery_Aggregation_Avg_size depends on runtime parameters */
- /* google_firestore_v1_Cursor_size depends on runtime parameters */
- /* Message IDs (where set with "msgid" option) */
- #ifdef PB_MSGID
- #define QUERY_MESSAGES \
- #endif
- const char* EnumToString(google_firestore_v1_StructuredQuery_Direction value);
- const char* EnumToString(
- google_firestore_v1_StructuredQuery_CompositeFilter_Operator value);
- const char* EnumToString(
- google_firestore_v1_StructuredQuery_FieldFilter_Operator value);
- const char* EnumToString(
- google_firestore_v1_StructuredQuery_UnaryFilter_Operator value);
- } // namespace firestore
- } // namespace firebase
- /* @@protoc_insertion_point(eof) */
- #endif
|