module Edmunds::Vehicle::Styles

Public Instance Methods

chrome_data(chrome_id, options={}) click to toggle source
# File lib/edmunds/vehicle/styles.rb, line 29
def chrome_data(chrome_id, options={})
  send_request "/partners/chrome/styles/#{chrome_id}", options
end
count(options={}) click to toggle source
# File lib/edmunds/vehicle/styles.rb, line 5
def count(options={})
  send_request '/styles/count', options
end
id(style_id, options={}) click to toggle source
# File lib/edmunds/vehicle/styles.rb, line 21
def id(style_id, options={})
  send_request "/styles/#{style_id}", options
end
make_count(make, options={}) click to toggle source
# File lib/edmunds/vehicle/styles.rb, line 9
def make_count(make, options={})
  send_request "/#{make}/styles/count", options
end
make_model_count(make, model, options={}) click to toggle source
# File lib/edmunds/vehicle/styles.rb, line 13
def make_model_count(make, model, options={})
  send_request "/#{make}/#{model}/styles/count", options
end
make_model_year(make, model, year, options={}) click to toggle source
# File lib/edmunds/vehicle/styles.rb, line 25
def make_model_year(make, model, year, options={})
  send_request "/#{make}/#{model}/#{year}/styles", options
end
make_model_year_count(make, model, year, options={}) click to toggle source
# File lib/edmunds/vehicle/styles.rb, line 17
def make_model_year_count(make, model, year, options={})
  send_request "/#{make}/#{model}/#{year}/styles/count", options
end