Class: Google::Area120::Tables::V1alpha1::Row
- Inherits:
-
Object
- Object
- Google::Area120::Tables::V1alpha1::Row
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/area120/tables/v1alpha1/tables.rb
Overview
A single row in a table.
Defined Under Namespace
Classes: ValuesEntry
Instance Attribute Summary collapse
-
#name ⇒ ::String
The resource name of the row.
-
#values ⇒ ::Google::Protobuf::Map{::String => ::Google::Protobuf::Value}
The values of the row.
Instance Attribute Details
#name ⇒ ::String
Returns The resource name of the row.
Row names have the form tables/{table}/rows/{row}
.
The name is ignored when creating a row.
376 377 378 379 380 381 382 383 384 385 386 387 388 |
# File 'proto_docs/google/area120/tables/v1alpha1/tables.rb', line 376 class Row include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Protobuf::Value] class ValuesEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#values ⇒ ::Google::Protobuf::Map{::String => ::Google::Protobuf::Value}
Returns The values of the row. This is a map of column key to value. Key is user entered name(default) or the internal column id based on the view in the request.
376 377 378 379 380 381 382 383 384 385 386 387 388 |
# File 'proto_docs/google/area120/tables/v1alpha1/tables.rb', line 376 class Row include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Protobuf::Value] class ValuesEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |