class BestBuy::Offer
Attributes
content_notes[R]
end_date[R]
id[R]
offer_name[R]
start_date[R]
text[R]
type[R]
url[R]
Public Class Methods
new(init_params)
click to toggle source
# File lib/best_buy/models/offer.rb, line 7 def initialize(init_params) @content_notes = init_params[:content_notes] @end_date = init_params[:end_date] @id = init_params[:id] @offer_name = init_params[:offer_name] @start_date = init_params[:start_date] @text = init_params[:text] @type = init_params[:type] @url = init_params[:url] end