Sha256: 91cb79c4f3243970ea621d91e379a03a21211023aa911064013ed8738bc9bda4

Contents?: true

Size: 335 Bytes

Versions: 1

Compression:

Stored size: 335 Bytes

Contents

module SuperLanding
  module API
    class StatisticItems < Base

      attr_accessor :ids

      def get!(ids)
        @ids = ids
        response = get('/statistic/items.json')
        Response::StatisticItems.new(response.body, response.code)
      end

      def params
        { member_base_ids: ids }
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
superlanding-0.1.0 lib/super_landing/api/statistic_items.rb