Class: Google::Protobuf::Struct
- Inherits:
-
Object
- Object
- Google::Protobuf::Struct
- Extended by:
- MessageExts::ClassMethods
- Includes:
- MessageExts
- Defined in:
- proto_docs/google/protobuf/struct.rb
Overview
Struct
represents a structured data value, consisting of fields
which map to dynamically typed values. In some languages, Struct
might be supported by a native representation. For example, in
scripting languages like JS a struct is represented as an
object. The details of that representation are described together
with the proto support for the language.
The JSON representation for Struct
is JSON object.
Defined Under Namespace
Classes: FieldsEntry
Instance Attribute Summary collapse
-
#fields ⇒ ::Google::Protobuf::Map{::String => ::Google::Protobuf::Value}
Unordered map of dynamically typed values.
Instance Attribute Details
#fields ⇒ ::Google::Protobuf::Map{::String => ::Google::Protobuf::Value}
Returns Unordered map of dynamically typed values.
33 34 35 36 37 38 39 40 41 42 43 44 45 |
# File 'proto_docs/google/protobuf/struct.rb', line 33 class Struct include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Protobuf::Value] class FieldsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |