Class: ArtVandelay::Import::Result
- Inherits:
-
Object
- Object
- ArtVandelay::Import::Result
- Defined in:
- lib/art_vandelay.rb
Instance Attribute Summary collapse
-
#rows_accepted ⇒ Object
readonly
Returns the value of attribute rows_accepted.
-
#rows_rejected ⇒ Object
readonly
Returns the value of attribute rows_rejected.
Instance Method Summary collapse
-
#initialize(rows_accepted:, rows_rejected:) ⇒ Result
constructor
A new instance of Result.
Constructor Details
#initialize(rows_accepted:, rows_rejected:) ⇒ Result
Returns a new instance of Result.
136 137 138 139 |
# File 'lib/art_vandelay.rb', line 136 def initialize(rows_accepted:, rows_rejected:) @rows_accepted = rows_accepted @rows_rejected = rows_rejected end |
Instance Attribute Details
#rows_accepted ⇒ Object (readonly)
Returns the value of attribute rows_accepted.
134 135 136 |
# File 'lib/art_vandelay.rb', line 134 def rows_accepted @rows_accepted end |
#rows_rejected ⇒ Object (readonly)
Returns the value of attribute rows_rejected.
134 135 136 |
# File 'lib/art_vandelay.rb', line 134 def rows_rejected @rows_rejected end |