Class: BestBuy::Conditions::RefurbishedCondition
- Inherits:
-
Object
- Object
- BestBuy::Conditions::RefurbishedCondition
- Defined in:
- lib/best_buy/helpers/conditions/refurbished_condition.rb
Instance Method Summary collapse
-
#initialize(condition_hash) ⇒ RefurbishedCondition
constructor
A new instance of RefurbishedCondition.
- #search_query ⇒ Object
- #valid? ⇒ Boolean
Constructor Details
#initialize(condition_hash) ⇒ RefurbishedCondition
Returns a new instance of RefurbishedCondition.
6 7 8 |
# File 'lib/best_buy/helpers/conditions/refurbished_condition.rb', line 6 def initialize(condition_hash) @item_condition = condition_hash[:item_condition]&.downcase end |
Instance Method Details
#search_query ⇒ Object
14 15 16 |
# File 'lib/best_buy/helpers/conditions/refurbished_condition.rb', line 14 def search_query 'condition=refurbished' end |
#valid? ⇒ Boolean
10 11 12 |
# File 'lib/best_buy/helpers/conditions/refurbished_condition.rb', line 10 def valid? @item_condition.present? && @item_condition == 'refurbished' end |