eligible 3.0.0.beta10 → 3.0.0.beta11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 022aad585cbfad9359538dc5fb0b94a8a0e81eeb380d6005afcc8e53927b8438
4
- data.tar.gz: 6b6d6c13ca25ea86645d02b9793305a90ad3c2b59a103136eeb00143eaa10b61
3
+ metadata.gz: 2b578b7a1d0fe41a7dfeafd2b2179c2174a48f35aaaab93f10713d31d8ab19dc
4
+ data.tar.gz: 4376c50f437b69667236cde63fcad61733b7c4c9206bd75d6cc8e798e18b2310
5
5
  SHA512:
6
- metadata.gz: 477bb4a77d00801a652170050f1e1d6227107fd1aa76278824e75c9ff5a5b0376d6eecc516232c4675cb2cc07f789139cb7642f66c9100fd581cd9d20f591717
7
- data.tar.gz: ef065dca99ea990a7274825b90bc1597612f89fce9469baef28d8a0766b1126c49dd68b867b67c1202a166e53f0f16cdd582cdf13b2f14083d5c586d29fb0045
6
+ metadata.gz: 84e20e28d5fb73047022b2a3c92572679415908c10cceedf7a0e815e025c045f81b15fa63785a2b9b96b8c65d2c3aa2c701818f7384d4caf653ae37a24dd856e
7
+ data.tar.gz: aca14a4a07d9bcfe20e69015777e8a2be20895e427d9d545b49b216d036d173c5f1a04aeabe162c51d0cce92a268db130fd5dc62c481c308e8106a7aa8c825cf
@@ -1,5 +1,29 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.0.0.beta11 - 2020-05-12
4
+ - Added summary and escalate actions for Enrollments endpoint
5
+ - Added Action endpoint
6
+ - Added Attribute endpoint
7
+ - Added Claim endpoint
8
+ - Added ClaimServiceLine endpoint
9
+ - Added Device endpoint
10
+ - Added Discount endpoint
11
+ - Renamed FileObject to File in order to kept consistency
12
+ - Added FileLink endpoint
13
+ - Added InsuranceCompanyAlias endpoint
14
+ - Added PaymentReport endpoint
15
+ - Added Remark endpoint
16
+ - Added Rule endpoint
17
+ - Added Session endpoint
18
+ - Added Transaction endpoint
19
+ - Added ValueList endpoint
20
+ - Added ValueListItem endpoint
21
+ - Added Verification endpoint
22
+ - Updated Charge endpoint to raise exception on delete action
23
+ - Updated Estimate endpoint, raise exception on update and delete actions, and added missing actions process, reestimate, convert
24
+ - Update EstimateServiceLine endpoint to raise exception on update and delete actions
25
+ - Updated InsuranceCompany endpoint to raise exception on delete action
26
+
3
27
  ## 3.0.0.beta10 - 2020-05-06
4
28
  - Added support for new REST API endpoints "Contract, Enrollment, Provider"
5
29
  - Added support delete operations on new API.
@@ -43,20 +43,36 @@ require 'eligible/icd'
43
43
 
44
44
  # New REST API Endpoints
45
45
  require 'eligible/v1_0/rest_api_base'
46
+ require 'eligible/v1_0/action'
47
+ require 'eligible/v1_0/attribute'
46
48
  require 'eligible/v1_0/charge'
49
+ require 'eligible/v1_0/claim'
50
+ require 'eligible/v1_0/claim_service_line'
47
51
  require 'eligible/v1_0/contract'
52
+ require 'eligible/v1_0/device'
53
+ require 'eligible/v1_0/discount'
48
54
  require 'eligible/v1_0/enrollment'
49
55
  require 'eligible/v1_0/estimate'
50
56
  require 'eligible/v1_0/estimate_service_line'
51
- require 'eligible/v1_0/file_object'
57
+ require 'eligible/v1_0/file'
58
+ require 'eligible/v1_0/file_link'
52
59
  require 'eligible/v1_0/insurance_company'
60
+ require 'eligible/v1_0/insurance_company_alias'
53
61
  require 'eligible/v1_0/insurance_policy'
54
62
  require 'eligible/v1_0/patient'
55
63
  require 'eligible/v1_0/patient_statement'
56
64
  require 'eligible/v1_0/patient_statement_service_line'
65
+ require 'eligible/v1_0/payment_report'
57
66
  require 'eligible/v1_0/product'
58
67
  require 'eligible/v1_0/provider'
68
+ require 'eligible/v1_0/remark'
69
+ require 'eligible/v1_0/rule'
70
+ require 'eligible/v1_0/session'
71
+ require 'eligible/v1_0/transaction'
59
72
  require 'eligible/v1_0/treatment'
73
+ require 'eligible/v1_0/value_list'
74
+ require 'eligible/v1_0/value_list_item'
75
+ require 'eligible/v1_0/verification'
60
76
 
61
77
  # Errors
62
78
  require 'eligible/errors/eligible_error'
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Eligible
4
+ module V1_0
5
+ class Action < RestAPIBase
6
+ ENDPOINT_NAME = 'rules/actions'.freeze
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Eligible
4
+ module V1_0
5
+ class Attribute < RestAPIBase
6
+ ENDPOINT_NAME = 'rules/attributes'.freeze
7
+ end
8
+ end
9
+ end
@@ -4,6 +4,10 @@ module Eligible
4
4
  module V1_0
5
5
  class Charge < RestAPIBase
6
6
  ENDPOINT_NAME = 'charges'.freeze
7
+
8
+ def self.delete(_params, _opts = {})
9
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
10
+ end
7
11
  end
8
12
  end
9
13
  end
@@ -0,0 +1,25 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Eligible
4
+ module V1_0
5
+ class Claim < RestAPIBase
6
+ ENDPOINT_NAME = 'claims'.freeze
7
+
8
+ def self.delete(_params, _opts = {})
9
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
10
+ end
11
+
12
+ def self.submit(id, opts = {})
13
+ send_request :post, "/#{endpoint_name}/#{object_id(id)}/submit", rest_api_params(id), opts.merge(required_params: [:id])
14
+ end
15
+
16
+ def self.correct(id, opts = {})
17
+ send_request :post, "/#{endpoint_name}/#{object_id(id)}/correct", rest_api_params(id), opts.merge(required_params: [:id])
18
+ end
19
+
20
+ def self.cancel(id, opts = {})
21
+ send_request :delete, "/#{endpoint_name}/#{object_id(id)}/cancel", rest_api_params(id), opts.merge(required_params: [:id])
22
+ end
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Eligible
4
+ module V1_0
5
+ class ClaimServiceLine < RestAPIBase
6
+ ENDPOINT_NAME = 'claim_service_lines'.freeze
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Eligible
4
+ module V1_0
5
+ class Device < RestAPIBase
6
+ ENDPOINT_NAME = 'devices'.freeze
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Eligible
4
+ module V1_0
5
+ class Discount < RestAPIBase
6
+ ENDPOINT_NAME = 'discounts'.freeze
7
+ end
8
+ end
9
+ end
@@ -4,6 +4,14 @@ module Eligible
4
4
  module V1_0
5
5
  class Enrollment < RestAPIBase
6
6
  ENDPOINT_NAME = 'enrollments'.freeze
7
+
8
+ def self.summary(params, opts = {})
9
+ send_request :get, "/#{endpoint_name}/summary", rest_api_params(params), opts
10
+ end
11
+
12
+ def self.escalate(id, opts = {})
13
+ send_request :post, "/#{endpoint_name}/#{object_id(id)}/escalate", rest_api_params(id), opts.merge(required_params: [:id])
14
+ end
7
15
  end
8
16
  end
9
17
  end
@@ -4,6 +4,26 @@ module Eligible
4
4
  module V1_0
5
5
  class Estimate < RestAPIBase
6
6
  ENDPOINT_NAME = 'estimates'.freeze
7
+
8
+ def self.process(id, opts = {})
9
+ send_request :post, "/#{endpoint_name}/#{object_id(id)}/process", rest_api_params(id), opts.merge(required_params: [:id])
10
+ end
11
+
12
+ def self.reestimate(id, opts = {})
13
+ send_request :post, "/#{endpoint_name}/#{object_id(id)}/reestimate", rest_api_params(id), opts.merge(required_params: [:id])
14
+ end
15
+
16
+ def self.convert(id, opts = {})
17
+ send_request :post, "/#{endpoint_name}/#{object_id(id)}/convert", rest_api_params(id), opts.merge(required_params: [:id])
18
+ end
19
+
20
+ def self.update(_params, _opts = {})
21
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
22
+ end
23
+
24
+ def self.delete(_params, _opts = {})
25
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
26
+ end
7
27
  end
8
28
  end
9
29
  end
@@ -5,5 +5,13 @@ module Eligible
5
5
  class EstimateServiceLine < RestAPIBase
6
6
  ENDPOINT_NAME = 'estimate_service_lines'.freeze
7
7
  end
8
+
9
+ def self.update(_params, _opts = {})
10
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
11
+ end
12
+
13
+ def self.delete(_params, _opts = {})
14
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
15
+ end
8
16
  end
9
17
  end
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Eligible
4
+ module V1_0
5
+ class File < RestAPIBase
6
+ ENDPOINT_NAME = 'files'.freeze
7
+
8
+ def self.update(_params, _opts = {})
9
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
10
+ end
11
+
12
+ def self.delete(_params, _opts = {})
13
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
14
+ end
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Eligible
4
+ module V1_0
5
+ class FileLink < RestAPIBase
6
+ ENDPOINT_NAME = 'file_links'.freeze
7
+
8
+ def self.delete(_params, _opts = {})
9
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
10
+ end
11
+ end
12
+ end
13
+ end
@@ -12,6 +12,10 @@ module Eligible
12
12
  def self.update(_params, _opts = {})
13
13
  fail NotImplementedError, "Not an allowed operation for this endpoint"
14
14
  end
15
+
16
+ def self.delete(_params, _opts = {})
17
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
18
+ end
15
19
  end
16
20
  end
17
21
  end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Eligible
4
+ module V1_0
5
+ class InsuranceCompanyAlias < RestAPIBase
6
+ ENDPOINT_NAME = 'insurance_company_aliases'.freeze
7
+ end
8
+ end
9
+ end
@@ -7,51 +7,47 @@ module Eligible
7
7
 
8
8
  # Finalize the patient statement
9
9
  def self.finalize(id, opts = {})
10
- send_request :post, "/patient_statements/#{statement_id(id)}/finalize", rest_api_params(id), opts.merge(required_params: [:id])
10
+ send_request :post, "/#{endpoint_name}/#{object_id(id)}/finalize", rest_api_params(id), opts.merge(required_params: [:id])
11
11
  end
12
12
 
13
13
  # Post a payment
14
14
  def self.pay(params, opts = {})
15
- send_request :post, "/patient_statements/#{statement_id(params)}/payment_reports", rest_api_params(params), opts.merge(required_params: [:id])
15
+ send_request :post, "/#{endpoint_name}/#{object_id(params)}/payment_reports", rest_api_params(params), opts.merge(required_params: [:id])
16
16
  end
17
17
 
18
18
  # List all payments
19
19
  def self.payments(params, opts = {})
20
- send_request :get, "/patient_statements/#{statement_id(params)}/payment_reports", rest_api_params(params), opts.merge(required_params: [:id])
20
+ send_request :get, "/#{endpoint_name}/#{object_id(params)}/payment_reports", rest_api_params(params), opts.merge(required_params: [:id])
21
21
  end
22
22
 
23
23
  # Capture a Patient Statement
24
24
  def self.capture(params, opts = {})
25
- send_request :post, "/patient_statements/#{statement_id(params)}/capture", rest_api_params(params), opts.merge(required_params: [:id])
25
+ send_request :post, "/#{endpoint_name}/#{object_id(params)}/capture", rest_api_params(params), opts.merge(required_params: [:id])
26
26
  end
27
27
 
28
28
  # Process a Patient Statement
29
29
  def self.process(params, opts = {})
30
- send_request :post, "/patient_statements/#{statement_id(params)}/process", rest_api_params(params), opts.merge(required_params: [:id])
30
+ send_request :post, "/#{endpoint_name}/#{object_id(params)}/process", rest_api_params(params), opts.merge(required_params: [:id])
31
31
  end
32
32
 
33
33
  # Send a Patient Statement
34
34
  def self.send(id, opts = {})
35
- send_request :post, "/patient_statements/#{statement_id(id)}/send", rest_api_params(id), opts.merge(required_params: [:id])
35
+ send_request :post, "/#{endpoint_name}/#{object_id(id)}/send", rest_api_params(id), opts.merge(required_params: [:id])
36
36
  end
37
37
 
38
38
  # Void a Patient Statement
39
39
  def self.void(id, opts = {})
40
- send_request :post, "/patient_statements/#{statement_id(id)}/void", rest_api_params(id), opts.merge(required_params: [:id])
40
+ send_request :post, "/#{endpoint_name}/#{object_id(id)}/void", rest_api_params(id), opts.merge(required_params: [:id])
41
41
  end
42
42
 
43
43
  # Mark UnCollectible
44
44
  def self.mark_uncollectible(id, opts = {})
45
- send_request :post, "/patient_statements/#{statement_id(id)}/mark_uncollectible", rest_api_params(id), opts.merge(required_params: [:id])
45
+ send_request :post, "/#{endpoint_name}/#{object_id(id)}/mark_uncollectible", rest_api_params(id), opts.merge(required_params: [:id])
46
46
  end
47
47
 
48
48
  # Reestimate a Patient Statement
49
49
  def self.reestimate(params, opts = {})
50
- send_request :post, "/patient_statements/#{statement_id(params)}/reestimate", rest_api_params(params), opts.merge(required_params: [:id])
51
- end
52
-
53
- def self.statement_id(id_or_params)
54
- id_or_params.is_a?(Hash) ? Util.value(id_or_params, :id) : id_or_params
50
+ send_request :post, "/#{endpoint_name}/#{object_id(params)}/reestimate", rest_api_params(params), opts.merge(required_params: [:id])
55
51
  end
56
52
  end
57
53
  end
@@ -5,8 +5,9 @@ module Eligible
5
5
  class PatientStatementServiceLine < RestAPIBase
6
6
  ENDPOINT_NAME = 'patient_statement_service_lines'.freeze
7
7
 
8
- # not an allowed operation so override the implementation to not support explicitly even though route is not defined
9
- def self.update; end
8
+ def self.update(_params, _opts = {})
9
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
10
+ end
10
11
  end
11
12
  end
12
13
  end
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Eligible
4
+ module V1_0
5
+ class PaymentReport < RestAPIBase
6
+ ENDPOINT_NAME = 'payment_reports'.freeze
7
+
8
+ def self.create(_params, _opts = {})
9
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
10
+ end
11
+
12
+ def self.update(_params, _opts = {})
13
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
14
+ end
15
+
16
+ def self.delete(_params, _opts = {})
17
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Eligible
4
+ module V1_0
5
+ class Remark < RestAPIBase
6
+ ENDPOINT_NAME = 'remarks'.freeze
7
+
8
+ def self.create(_params, _opts = {})
9
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
10
+ end
11
+
12
+ def self.update(_params, _opts = {})
13
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
14
+ end
15
+
16
+ def self.delete(_params, _opts = {})
17
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
18
+ end
19
+ end
20
+ end
21
+ end
@@ -24,6 +24,12 @@ module Eligible
24
24
  def self.delete(id, opts = {})
25
25
  send_request :delete, api_url(endpoint_name, rest_api_params(id), :id), rest_api_params(id), opts.merge(required_params: [:id])
26
26
  end
27
+
28
+ private
29
+
30
+ def self.object_id(id_or_params)
31
+ id_or_params.is_a?(Hash) ? Util.value(id_or_params, :id) : id_or_params
32
+ end
27
33
  end
28
34
  end
29
35
  end
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Eligible
4
+ module V1_0
5
+ class Rule < RestAPIBase
6
+ ENDPOINT_NAME = 'rules'.freeze
7
+
8
+ def self.create(_params, _opts = {})
9
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
10
+ end
11
+
12
+ def self.update(_params, _opts = {})
13
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
14
+ end
15
+
16
+ def self.delete(_params, _opts = {})
17
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Eligible
4
+ module V1_0
5
+ class Session < RestAPIBase
6
+ ENDPOINT_NAME = 'sessions'.freeze
7
+
8
+ def self.update(_params, _opts = {})
9
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
10
+ end
11
+
12
+ def self.delete(_params, _opts = {})
13
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
14
+ end
15
+
16
+ def self.list(_params, _opts = {})
17
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Eligible
4
+ module V1_0
5
+ class Transaction < RestAPIBase
6
+ ENDPOINT_NAME = 'transactions'.freeze
7
+
8
+ def self.create(_params, _opts = {})
9
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
10
+ end
11
+
12
+ def self.update(_params, _opts = {})
13
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
14
+ end
15
+
16
+ def self.delete(_params, _opts = {})
17
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Eligible
4
+ module V1_0
5
+ class ValueList < RestAPIBase
6
+ ENDPOINT_NAME = 'rules/value_lists'.freeze
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Eligible
4
+ module V1_0
5
+ class ValueListItem < RestAPIBase
6
+ ENDPOINT_NAME = 'rules/value_list_items'.freeze
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Eligible
4
+ module V1_0
5
+ class Verification < RestAPIBase
6
+ ENDPOINT_NAME = 'verifications'.freeze
7
+
8
+ def self.update(_params, _opts = {})
9
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
10
+ end
11
+
12
+ def self.delete(_params, _opts = {})
13
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
14
+ end
15
+ end
16
+ end
17
+ end
@@ -1,3 +1,3 @@
1
1
  module Eligible
2
- VERSION = '3.0.0.beta10'.freeze
2
+ VERSION = '3.0.0.beta11'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: eligible
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0.beta10
4
+ version: 3.0.0.beta11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Katelyn Gleaon
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2020-05-07 00:00:00.000000000 Z
13
+ date: 2020-05-12 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rest-client
@@ -155,21 +155,37 @@ files:
155
155
  - lib/eligible/session_token.rb
156
156
  - lib/eligible/ticket.rb
157
157
  - lib/eligible/util.rb
158
+ - lib/eligible/v1_0/action.rb
159
+ - lib/eligible/v1_0/attribute.rb
158
160
  - lib/eligible/v1_0/charge.rb
161
+ - lib/eligible/v1_0/claim.rb
162
+ - lib/eligible/v1_0/claim_service_line.rb
159
163
  - lib/eligible/v1_0/contract.rb
164
+ - lib/eligible/v1_0/device.rb
165
+ - lib/eligible/v1_0/discount.rb
160
166
  - lib/eligible/v1_0/enrollment.rb
161
167
  - lib/eligible/v1_0/estimate.rb
162
168
  - lib/eligible/v1_0/estimate_service_line.rb
163
- - lib/eligible/v1_0/file_object.rb
169
+ - lib/eligible/v1_0/file.rb
170
+ - lib/eligible/v1_0/file_link.rb
164
171
  - lib/eligible/v1_0/insurance_company.rb
172
+ - lib/eligible/v1_0/insurance_company_alias.rb
165
173
  - lib/eligible/v1_0/insurance_policy.rb
166
174
  - lib/eligible/v1_0/patient.rb
167
175
  - lib/eligible/v1_0/patient_statement.rb
168
176
  - lib/eligible/v1_0/patient_statement_service_line.rb
177
+ - lib/eligible/v1_0/payment_report.rb
169
178
  - lib/eligible/v1_0/product.rb
170
179
  - lib/eligible/v1_0/provider.rb
180
+ - lib/eligible/v1_0/remark.rb
171
181
  - lib/eligible/v1_0/rest_api_base.rb
182
+ - lib/eligible/v1_0/rule.rb
183
+ - lib/eligible/v1_0/session.rb
184
+ - lib/eligible/v1_0/transaction.rb
172
185
  - lib/eligible/v1_0/treatment.rb
186
+ - lib/eligible/v1_0/value_list.rb
187
+ - lib/eligible/v1_0/value_list_item.rb
188
+ - lib/eligible/v1_0/verification.rb
173
189
  - lib/eligible/version.rb
174
190
  - lib/eligible/visit_type.rb
175
191
  - lib/eligible/x12.rb
@@ -1,12 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Eligible
4
- module V1_0
5
- class FileObject < RestAPIBase
6
- ENDPOINT_NAME = 'files'.freeze
7
-
8
- # not an allowed operation so override the implementation to not support explicitly even though route is not defined
9
- def self.update; end
10
- end
11
- end
12
- end