Sha256: a857b483c4ed89382a2d910a8b3bf1a1a57b4d6c47ce412c8fe123101b5f0d68
Contents?: true
Size: 558 Bytes
Versions: 22
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
22 entries across 22 versions & 1 rubygems
Version | Path |
---|---|
eligible-3.0.0.beta12 | lib/eligible/v1_0/transaction.rb |
eligible-3.0.0.beta11 | lib/eligible/v1_0/transaction.rb |