Sha256: eff3ef02adfa3a090fb4270afa208d5ee2e0d99b9bab28409b13868a90b02b61
Contents?: true
Size: 570 Bytes
Versions: 21
Compression:
Stored size: 570 Bytes
Contents
# frozen_string_literal: true module Eligible module V1_0 class InsuranceCompany < RestAPIBase ENDPOINT_NAME = 'insurance_companies'.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