class StatelyDB::Transaction::Transaction::Result

@attr_reader deletes [Array<String>] the key paths that were deleted
@attr_reader puts [Array<StatelyDB::Item>] the items that were put
Result represents the results of a transaction

def initialize(puts:, deletes:)

Parameters:
  • deletes (Array) -- the key paths that were deleted
  • puts (Array) -- the items that were put
def initialize(puts:, deletes:)
  @puts = puts
  @deletes = deletes
end