class Repository::Support::StoreResult

Uniform representation of success or failure of a storage-command action.

Attributes

entity[R]
errors[R]
success[R]
success?[R]

Public Class Methods

new(entity:, errors:, success:) click to toggle source
# File lib/repository/support/store_result.rb, line 24
def initialize(entity:, errors:, success:)
  @entity = entity
  @errors = errors
  @success = success
end