Sha256: ca12b29d8c82f77648c2ed6f2b74c59a2e15d98b9dc034f9fc4fa3fe080d97bb
Contents?: true
Size: 621 Bytes
Versions: 5
Compression:
Stored size: 621 Bytes
Contents
# frozen_string_literal: true module Eligible module V1_0 module Reports class AccuracyStats < RestAPIBase ENDPOINT_NAME = 'reports/accuracy_stats'.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
5 entries across 5 versions & 1 rubygems