module Qingting::Api::Billboard::ClassMethods

Class methods

Public Instance Methods

categories_billboard(category_id) click to toggle source
# File lib/qingting/api/billboard.rb, line 25
def categories_billboard(category_id)
  url = eval("Base.v6_categories_#{category_id}_channels_billboard")
  Base.request(url)
end
recommends_billboards_channellives() click to toggle source
# File lib/qingting/api/billboard.rb, line 15
def recommends_billboards_channellives
  url = eval("Base.v6_recommends_billboards_channellives")
  Base.request(url)
end
recommends_billboards_programondemands() click to toggle source
# File lib/qingting/api/billboard.rb, line 20
def recommends_billboards_programondemands
  url = eval("Base.v6_recommends_billboards_programondemands")
  Base.request(url)
end
type_billboard(category_id,type) click to toggle source
# File lib/qingting/api/billboard.rb, line 30
def type_billboard(category_id,type)
  url = eval("Base.v6_categories_#{category_id}_channels_billboard_#{type}")
  Base.request(url)
end