Sha256: 20ed19b3974ca35cf5ea737d88344ab496e620bc4feb9dd20b54cfdee6bc2c25
Contents?: true
Size: 565 Bytes
Versions: 12
Compression:
Stored size: 565 Bytes
Contents
# frozen_string_literal: true module Eligible module V1_0 class BalanceCapture < RestAPIBase ENDPOINT_NAME = 'balance_captures'.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