Expand description
Nested message and enum types in Type
.
Modules§
- Nested message and enum types in
Aggregate
. - Nested message and enum types in
Bytes
. - Nested message and enum types in
Int64
. - Nested message and enum types in
String
. - Nested message and enum types in
Struct
.
Structs§
- A value that combines incremental updates into a summarized value.
- An ordered list of elements of a given type. Values of type
Array
are stored inValue.array_value
. - bool Values of type
Bool
are stored inValue.bool_value
. - Bytes Values of type
Bytes
are stored inValue.bytes_value
. - Date Values of type
Date
are stored inValue.date_value
. - Float32 Values of type
Float32
are stored inValue.float_value
. - Float64 Values of type
Float64
are stored inValue.float_value
. - Int64 Values of type
Int64
are stored inValue.int_value
. - A mapping of keys to values of a given type. Values of type
Map
are stored in aValue.array_value
where each entry is anotherValue.array_value
with two elements (the key and the value, in that order). Normally encoded Map values won’t have repeated keys, however, clients are expected to handle the case in which they do. If the same key appears multiple times, the last value takes precedence. - String Values of type
String
are stored inValue.string_value
. - A structured data value, consisting of fields which map to dynamically typed values. Values of type
Struct
are stored inValue.array_value
where entries are in the same order and number asfield_types
. - Timestamp Values of type
Timestamp
are stored inValue.timestamp_value
.
Enums§
- The kind of type that this represents.