Sha256: 16bb0a07490cf95c282e3827fba2bbf2b710ec1f6484c43da487548c7428fdf6
Contents?: true
Size: 628 Bytes
Versions: 5
Compression:
Stored size: 628 Bytes
Contents
# frozen_string_literal: true module Eligible module V1_0 module Reports class EstimateFriction < RestAPIBase ENDPOINT_NAME = 'reports/estimate_frictions'.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