Sha256: a5e9019d38ef45953370ae77fccfd7bb3ba2bf6b3032da24df5c631c7195cc4b
Contents?: true
Size: 616 Bytes
Versions: 2
Compression:
Stored size: 616 Bytes
Contents
# frozen_string_literal: true module Eligible module V1_0 module Reports class Collections < RestAPIBase ENDPOINT_NAME = 'reports/collections'.freeze def self.create(_params, _opts = {}) fail NotImplementedError, "Not an allowed operation for this endpoint" end def self.update(_params, _opts = {}) fail NotImplementedError, "Not an allowed operation for this endpoint" end def self.delete(_params, _opts = {}) fail NotImplementedError, "Not an allowed operation for this endpoint" end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
eligible-3.0.0.beta22 | lib/eligible/v1_0/reports/collections.rb |
eligible-3.0.0.beta20 | lib/eligible/v1_0/reports/collections.rb |