class SuperLanding::API::StatisticItems

Attributes

ids[RW]

Public Instance Methods

get!(ids) click to toggle source
# File lib/super_landing/api/statistic_items.rb, line 7
def get!(ids)
  @ids = ids
  response = get('/statistic/items.json')
  Response::StatisticItems.new(response.body, response.code)
end
params() click to toggle source
# File lib/super_landing/api/statistic_items.rb, line 13
def params
  { member_base_ids: ids }
end