Sha256: a857b483c4ed89382a2d910a8b3bf1a1a57b4d6c47ce412c8fe123101b5f0d68
Contents?: true
Size: 558 Bytes
Versions: 21
Compression:
Stored size: 558 Bytes
Contents
# frozen_string_literal: true module Eligible module V1_0 class Transaction < RestAPIBase ENDPOINT_NAME = 'transactions'.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
21 entries across 21 versions & 1 rubygems