Sha256: 7a6577808a34c60bd3f8169065f377676394edeeaa9f30a62d2cbd4786bf474d
Contents?: true
Size: 548 Bytes
Versions: 12
Compression:
Stored size: 548 Bytes
Contents
# frozen_string_literal: true module Eligible module V1_0 class Refund < RestAPIBase ENDPOINT_NAME = 'refunds'.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
Version data entries
12 entries across 12 versions & 1 rubygems