# frozen_string_literal: true module Eligible module V1_0 module Reports class DistributionRatios < RestAPIBase ENDPOINT_NAME = 'reports/distribution_ratios'.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