Class: Metadata::TableInBatchWriteRowItem
- Inherits:
-
Object
- Object
- Metadata::TableInBatchWriteRowItem
- Defined in:
- lib/tablestore/metadata.rb
Instance Attribute Summary collapse
-
#row_items ⇒ Object
Returns the value of attribute row_items.
-
#table_name ⇒ Object
Returns the value of attribute table_name.
Instance Method Summary collapse
-
#initialize(table_name, row_items) ⇒ TableInBatchWriteRowItem
constructor
A new instance of TableInBatchWriteRowItem.
Constructor Details
#initialize(table_name, row_items) ⇒ TableInBatchWriteRowItem
Returns a new instance of TableInBatchWriteRowItem.
311 312 313 314 |
# File 'lib/tablestore/metadata.rb', line 311 def initialize(table_name, row_items) self.table_name = table_name self.row_items = row_items end |
Instance Attribute Details
#row_items ⇒ Object
Returns the value of attribute row_items.
310 311 312 |
# File 'lib/tablestore/metadata.rb', line 310 def row_items @row_items end |
#table_name ⇒ Object
Returns the value of attribute table_name.
310 311 312 |
# File 'lib/tablestore/metadata.rb', line 310 def table_name @table_name end |