Class: Google::Cloud::Firestore::V1::MapValue
- Inherits:
-
Object
- Object
- Google::Cloud::Firestore::V1::MapValue
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/firestore/v1/document.rb
Overview
A map value.
Defined Under Namespace
Classes: FieldsEntry
Instance Attribute Summary collapse
-
#fields ⇒ ::Google::Protobuf::Map{::String => ::Google::Cloud::Firestore::V1::Value}
The map's fields.
Instance Attribute Details
#fields ⇒ ::Google::Protobuf::Map{::String => ::Google::Cloud::Firestore::V1::Value}
Returns The map's fields.
The map keys represent field names. Field names matching the regular
expression __.*__
are reserved. Reserved field names are forbidden except
in certain documented contexts. The map keys, represented as UTF-8, must
not exceed 1,500 bytes and cannot be empty.
156 157 158 159 160 161 162 163 164 165 166 167 168 |
# File 'proto_docs/google/firestore/v1/document.rb', line 156 class MapValue include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Cloud::Firestore::V1::Value] class FieldsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |