candidhealth 0.24.7 → 0.26.0
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 +4 -4
- data/lib/candidhealth/financials/types/allocation_target.rb +13 -0
- data/lib/candidhealth/financials/types/allocation_target_create.rb +12 -0
- data/lib/candidhealth/financials/types/appointment_allocation_target.rb +58 -0
- data/lib/candidhealth/service_lines/client.rb +30 -0
- data/lib/candidhealth/service_lines/v_2/client.rb +229 -0
- data/lib/candidhealth/service_lines/v_2/types/service_line_create_standalone.rb +279 -0
- data/lib/candidhealth/service_lines/v_2/types/service_line_update.rb +281 -0
- data/lib/candidhealth/third_party_payer_payments/client.rb +30 -0
- data/lib/candidhealth/third_party_payer_payments/v_1/client.rb +360 -0
- data/lib/candidhealth/third_party_payer_payments/v_1/types/third_party_payer_payment.rb +138 -0
- data/lib/candidhealth/third_party_payer_payments/v_1/types/third_party_payer_payment_create.rb +124 -0
- data/lib/candidhealth/third_party_payer_payments/v_1/types/third_party_payer_payment_sort_field.rb +14 -0
- data/lib/candidhealth/third_party_payer_payments/v_1/types/third_party_payer_payments_page.rb +88 -0
- data/lib/candidhealth/third_party_payer_refunds/client.rb +30 -0
- data/lib/candidhealth/third_party_payer_refunds/v_1/client.rb +385 -0
- data/lib/candidhealth/third_party_payer_refunds/v_1/types/third_party_payer_refund.rb +139 -0
- data/lib/candidhealth/third_party_payer_refunds/v_1/types/third_party_payer_refund_create.rb +125 -0
- data/lib/candidhealth/third_party_payer_refunds/v_1/types/third_party_payer_refund_sort_field.rb +14 -0
- data/lib/candidhealth/third_party_payer_refunds/v_1/types/third_party_payer_refunds_page.rb +88 -0
- data/lib/candidhealth/third_party_payers/client.rb +30 -0
- data/lib/candidhealth/third_party_payers/v_1/client.rb +375 -0
- data/lib/candidhealth/third_party_payers/v_1/types/create_third_party_payer_request.rb +79 -0
- data/lib/candidhealth/third_party_payers/v_1/types/third_party_payer.rb +100 -0
- data/lib/candidhealth/third_party_payers/v_1/types/third_party_payer_category_update.rb +97 -0
- data/lib/candidhealth/third_party_payers/v_1/types/third_party_payer_description_update.rb +97 -0
- data/lib/candidhealth/third_party_payers/v_1/types/third_party_payer_page.rb +88 -0
- data/lib/candidhealth/third_party_payers/v_1/types/third_party_payer_sort_field.rb +16 -0
- data/lib/candidhealth/third_party_payers/v_1/types/third_party_payer_update_request.rb +92 -0
- data/lib/candidhealth/third_party_payers/v_1/types/toggle_third_party_payer_enablement_request.rb +61 -0
- data/lib/candidhealth/write_offs/v_1/types/patient_write_off.rb +18 -2
- data/lib/candidhealth.rb +28 -0
- data/lib/requests.rb +2 -2
- data/lib/types_export.rb +19 -0
- metadata +29 -2
@@ -19,6 +19,10 @@ module CandidApiClient
|
|
19
19
|
# @return [CandidApiClient::WriteOffs::V1::Types::PatientWriteOffReason]
|
20
20
|
attr_reader :write_off_reason
|
21
21
|
# @return [String]
|
22
|
+
attr_reader :patient_external_id
|
23
|
+
# @return [String]
|
24
|
+
attr_reader :claim_id
|
25
|
+
# @return [String]
|
22
26
|
attr_reader :service_line_id
|
23
27
|
# @return [String]
|
24
28
|
attr_reader :reverts_write_off_id
|
@@ -38,18 +42,22 @@ module CandidApiClient
|
|
38
42
|
# @param write_off_timestamp [DateTime]
|
39
43
|
# @param write_off_note [String]
|
40
44
|
# @param write_off_reason [CandidApiClient::WriteOffs::V1::Types::PatientWriteOffReason]
|
45
|
+
# @param patient_external_id [String]
|
46
|
+
# @param claim_id [String]
|
41
47
|
# @param service_line_id [String]
|
42
48
|
# @param reverts_write_off_id [String]
|
43
49
|
# @param reverted_by_write_off_id [String]
|
44
50
|
# @param amount_cents [Integer]
|
45
51
|
# @param additional_properties [OpenStruct] Additional properties unmapped to the current class definition
|
46
52
|
# @return [CandidApiClient::WriteOffs::V1::Types::PatientWriteOff]
|
47
|
-
def initialize(write_off_id:, write_off_timestamp:, write_off_reason:,
|
48
|
-
write_off_note: OMIT, reverts_write_off_id: OMIT, reverted_by_write_off_id: OMIT, additional_properties: nil)
|
53
|
+
def initialize(write_off_id:, write_off_timestamp:, write_off_reason:, patient_external_id:, claim_id:,
|
54
|
+
service_line_id:, amount_cents:, write_off_note: OMIT, reverts_write_off_id: OMIT, reverted_by_write_off_id: OMIT, additional_properties: nil)
|
49
55
|
@write_off_id = write_off_id
|
50
56
|
@write_off_timestamp = write_off_timestamp
|
51
57
|
@write_off_note = write_off_note if write_off_note != OMIT
|
52
58
|
@write_off_reason = write_off_reason
|
59
|
+
@patient_external_id = patient_external_id
|
60
|
+
@claim_id = claim_id
|
53
61
|
@service_line_id = service_line_id
|
54
62
|
@reverts_write_off_id = reverts_write_off_id if reverts_write_off_id != OMIT
|
55
63
|
@reverted_by_write_off_id = reverted_by_write_off_id if reverted_by_write_off_id != OMIT
|
@@ -60,6 +68,8 @@ module CandidApiClient
|
|
60
68
|
"write_off_timestamp": write_off_timestamp,
|
61
69
|
"write_off_note": write_off_note,
|
62
70
|
"write_off_reason": write_off_reason,
|
71
|
+
"patient_external_id": patient_external_id,
|
72
|
+
"claim_id": claim_id,
|
63
73
|
"service_line_id": service_line_id,
|
64
74
|
"reverts_write_off_id": reverts_write_off_id,
|
65
75
|
"reverted_by_write_off_id": reverted_by_write_off_id,
|
@@ -82,6 +92,8 @@ module CandidApiClient
|
|
82
92
|
end
|
83
93
|
write_off_note = struct["write_off_note"]
|
84
94
|
write_off_reason = struct["write_off_reason"]
|
95
|
+
patient_external_id = struct["patient_external_id"]
|
96
|
+
claim_id = struct["claim_id"]
|
85
97
|
service_line_id = struct["service_line_id"]
|
86
98
|
reverts_write_off_id = struct["reverts_write_off_id"]
|
87
99
|
reverted_by_write_off_id = struct["reverted_by_write_off_id"]
|
@@ -91,6 +103,8 @@ module CandidApiClient
|
|
91
103
|
write_off_timestamp: write_off_timestamp,
|
92
104
|
write_off_note: write_off_note,
|
93
105
|
write_off_reason: write_off_reason,
|
106
|
+
patient_external_id: patient_external_id,
|
107
|
+
claim_id: claim_id,
|
94
108
|
service_line_id: service_line_id,
|
95
109
|
reverts_write_off_id: reverts_write_off_id,
|
96
110
|
reverted_by_write_off_id: reverted_by_write_off_id,
|
@@ -117,6 +131,8 @@ module CandidApiClient
|
|
117
131
|
obj.write_off_timestamp.is_a?(DateTime) != false || raise("Passed value for field obj.write_off_timestamp is not the expected type, validation failed.")
|
118
132
|
obj.write_off_note&.is_a?(String) != false || raise("Passed value for field obj.write_off_note is not the expected type, validation failed.")
|
119
133
|
obj.write_off_reason.is_a?(CandidApiClient::WriteOffs::V1::Types::PatientWriteOffReason) != false || raise("Passed value for field obj.write_off_reason is not the expected type, validation failed.")
|
134
|
+
obj.patient_external_id.is_a?(String) != false || raise("Passed value for field obj.patient_external_id is not the expected type, validation failed.")
|
135
|
+
obj.claim_id.is_a?(String) != false || raise("Passed value for field obj.claim_id is not the expected type, validation failed.")
|
120
136
|
obj.service_line_id.is_a?(String) != false || raise("Passed value for field obj.service_line_id is not the expected type, validation failed.")
|
121
137
|
obj.reverts_write_off_id&.is_a?(String) != false || raise("Passed value for field obj.reverts_write_off_id is not the expected type, validation failed.")
|
122
138
|
obj.reverted_by_write_off_id&.is_a?(String) != false || raise("Passed value for field obj.reverted_by_write_off_id is not the expected type, validation failed.")
|
data/lib/candidhealth.rb
CHANGED
@@ -24,7 +24,11 @@ require_relative "candidhealth/organization_providers/client"
|
|
24
24
|
require_relative "candidhealth/patient_payments/client"
|
25
25
|
require_relative "candidhealth/patient_refunds/client"
|
26
26
|
require_relative "candidhealth/payers/client"
|
27
|
+
require_relative "candidhealth/service_lines/client"
|
27
28
|
require_relative "candidhealth/tasks/client"
|
29
|
+
require_relative "candidhealth/third_party_payer_payments/client"
|
30
|
+
require_relative "candidhealth/third_party_payer_refunds/client"
|
31
|
+
require_relative "candidhealth/third_party_payers/client"
|
28
32
|
require_relative "candidhealth/write_offs/client"
|
29
33
|
require_relative "candidhealth/pre_encounter/client"
|
30
34
|
require_relative "candidhealth/service_facility/client"
|
@@ -71,8 +75,16 @@ module CandidApiClient
|
|
71
75
|
attr_reader :patient_refunds
|
72
76
|
# @return [CandidApiClient::Payers::Client]
|
73
77
|
attr_reader :payers
|
78
|
+
# @return [CandidApiClient::ServiceLines::Client]
|
79
|
+
attr_reader :service_lines
|
74
80
|
# @return [CandidApiClient::Tasks::Client]
|
75
81
|
attr_reader :tasks
|
82
|
+
# @return [CandidApiClient::ThirdPartyPayerPayments::Client]
|
83
|
+
attr_reader :third_party_payer_payments
|
84
|
+
# @return [CandidApiClient::ThirdPartyPayerRefunds::Client]
|
85
|
+
attr_reader :third_party_payer_refunds
|
86
|
+
# @return [CandidApiClient::ThirdPartyPayers::Client]
|
87
|
+
attr_reader :third_party_payers
|
76
88
|
# @return [CandidApiClient::WriteOffs::Client]
|
77
89
|
attr_reader :write_offs
|
78
90
|
# @return [CandidApiClient::PreEncounter::Client]
|
@@ -126,7 +138,11 @@ module CandidApiClient
|
|
126
138
|
@patient_payments = CandidApiClient::PatientPayments::Client.new(request_client: @request_client)
|
127
139
|
@patient_refunds = CandidApiClient::PatientRefunds::Client.new(request_client: @request_client)
|
128
140
|
@payers = CandidApiClient::Payers::Client.new(request_client: @request_client)
|
141
|
+
@service_lines = CandidApiClient::ServiceLines::Client.new(request_client: @request_client)
|
129
142
|
@tasks = CandidApiClient::Tasks::Client.new(request_client: @request_client)
|
143
|
+
@third_party_payer_payments = CandidApiClient::ThirdPartyPayerPayments::Client.new(request_client: @request_client)
|
144
|
+
@third_party_payer_refunds = CandidApiClient::ThirdPartyPayerRefunds::Client.new(request_client: @request_client)
|
145
|
+
@third_party_payers = CandidApiClient::ThirdPartyPayers::Client.new(request_client: @request_client)
|
130
146
|
@write_offs = CandidApiClient::WriteOffs::Client.new(request_client: @request_client)
|
131
147
|
@pre_encounter = CandidApiClient::PreEncounter::Client.new(request_client: @request_client)
|
132
148
|
@service_facility = CandidApiClient::ServiceFacilityClient.new(request_client: @request_client)
|
@@ -174,8 +190,16 @@ module CandidApiClient
|
|
174
190
|
attr_reader :patient_refunds
|
175
191
|
# @return [CandidApiClient::Payers::AsyncClient]
|
176
192
|
attr_reader :payers
|
193
|
+
# @return [CandidApiClient::ServiceLines::AsyncClient]
|
194
|
+
attr_reader :service_lines
|
177
195
|
# @return [CandidApiClient::Tasks::AsyncClient]
|
178
196
|
attr_reader :tasks
|
197
|
+
# @return [CandidApiClient::ThirdPartyPayerPayments::AsyncClient]
|
198
|
+
attr_reader :third_party_payer_payments
|
199
|
+
# @return [CandidApiClient::ThirdPartyPayerRefunds::AsyncClient]
|
200
|
+
attr_reader :third_party_payer_refunds
|
201
|
+
# @return [CandidApiClient::ThirdPartyPayers::AsyncClient]
|
202
|
+
attr_reader :third_party_payers
|
179
203
|
# @return [CandidApiClient::WriteOffs::AsyncClient]
|
180
204
|
attr_reader :write_offs
|
181
205
|
# @return [CandidApiClient::PreEncounter::AsyncClient]
|
@@ -229,7 +253,11 @@ module CandidApiClient
|
|
229
253
|
@patient_payments = CandidApiClient::PatientPayments::AsyncClient.new(request_client: @async_request_client)
|
230
254
|
@patient_refunds = CandidApiClient::PatientRefunds::AsyncClient.new(request_client: @async_request_client)
|
231
255
|
@payers = CandidApiClient::Payers::AsyncClient.new(request_client: @async_request_client)
|
256
|
+
@service_lines = CandidApiClient::ServiceLines::AsyncClient.new(request_client: @async_request_client)
|
232
257
|
@tasks = CandidApiClient::Tasks::AsyncClient.new(request_client: @async_request_client)
|
258
|
+
@third_party_payer_payments = CandidApiClient::ThirdPartyPayerPayments::AsyncClient.new(request_client: @async_request_client)
|
259
|
+
@third_party_payer_refunds = CandidApiClient::ThirdPartyPayerRefunds::AsyncClient.new(request_client: @async_request_client)
|
260
|
+
@third_party_payers = CandidApiClient::ThirdPartyPayers::AsyncClient.new(request_client: @async_request_client)
|
233
261
|
@write_offs = CandidApiClient::WriteOffs::AsyncClient.new(request_client: @async_request_client)
|
234
262
|
@pre_encounter = CandidApiClient::PreEncounter::AsyncClient.new(request_client: @async_request_client)
|
235
263
|
@service_facility = CandidApiClient::AsyncServiceFacilityClient.new(request_client: @async_request_client)
|
data/lib/requests.rb
CHANGED
@@ -43,7 +43,7 @@ module CandidApiClient
|
|
43
43
|
|
44
44
|
# @return [Hash{String => String}]
|
45
45
|
def get_headers
|
46
|
-
headers = { "X-Fern-Language": "Ruby", "X-Fern-SDK-Name": "candidhealth", "X-Fern-SDK-Version": "0.
|
46
|
+
headers = { "X-Fern-Language": "Ruby", "X-Fern-SDK-Name": "candidhealth", "X-Fern-SDK-Version": "0.26.0" }
|
47
47
|
headers["Authorization"] = ((@token.is_a? Method) ? @token.call : @token) unless token.nil?
|
48
48
|
headers
|
49
49
|
end
|
@@ -87,7 +87,7 @@ module CandidApiClient
|
|
87
87
|
|
88
88
|
# @return [Hash{String => String}]
|
89
89
|
def get_headers
|
90
|
-
headers = { "X-Fern-Language": "Ruby", "X-Fern-SDK-Name": "candidhealth", "X-Fern-SDK-Version": "0.
|
90
|
+
headers = { "X-Fern-Language": "Ruby", "X-Fern-SDK-Name": "candidhealth", "X-Fern-SDK-Version": "0.26.0" }
|
91
91
|
headers["Authorization"] = ((@token.is_a? Method) ? @token.call : @token) unless token.nil?
|
92
92
|
headers
|
93
93
|
end
|
data/lib/types_export.rb
CHANGED
@@ -198,6 +198,8 @@ require_relative "candidhealth/payers/v_3/types/payer_identifier"
|
|
198
198
|
require_relative "candidhealth/remits/v_1/types/payee_identifier"
|
199
199
|
require_relative "candidhealth/remits/v_1/types/payee"
|
200
200
|
require_relative "candidhealth/service_lines/v_2/types/service_line_create"
|
201
|
+
require_relative "candidhealth/service_lines/v_2/types/service_line_create_standalone"
|
202
|
+
require_relative "candidhealth/service_lines/v_2/types/service_line_update"
|
201
203
|
require_relative "candidhealth/service_lines/v_2/types/service_line"
|
202
204
|
require_relative "candidhealth/service_lines/v_2/types/service_line_era_data"
|
203
205
|
require_relative "candidhealth/service_lines/v_2/types/service_line_adjustment"
|
@@ -218,6 +220,22 @@ require_relative "candidhealth/tasks/v_3/types/task_create_v_3"
|
|
218
220
|
require_relative "candidhealth/tasks/v_3/types/task_update_v_3"
|
219
221
|
require_relative "candidhealth/tasks/v_3/types/task_page"
|
220
222
|
require_relative "candidhealth/tasks/v_3/types/task_updated_to_deprecated_status_error_type"
|
223
|
+
require_relative "candidhealth/third_party_payer_payments/v_1/types/third_party_payer_payment"
|
224
|
+
require_relative "candidhealth/third_party_payer_payments/v_1/types/third_party_payer_payment_create"
|
225
|
+
require_relative "candidhealth/third_party_payer_payments/v_1/types/third_party_payer_payments_page"
|
226
|
+
require_relative "candidhealth/third_party_payer_payments/v_1/types/third_party_payer_payment_sort_field"
|
227
|
+
require_relative "candidhealth/third_party_payer_refunds/v_1/types/third_party_payer_refund"
|
228
|
+
require_relative "candidhealth/third_party_payer_refunds/v_1/types/third_party_payer_refund_create"
|
229
|
+
require_relative "candidhealth/third_party_payer_refunds/v_1/types/third_party_payer_refunds_page"
|
230
|
+
require_relative "candidhealth/third_party_payer_refunds/v_1/types/third_party_payer_refund_sort_field"
|
231
|
+
require_relative "candidhealth/third_party_payers/v_1/types/third_party_payer"
|
232
|
+
require_relative "candidhealth/third_party_payers/v_1/types/create_third_party_payer_request"
|
233
|
+
require_relative "candidhealth/third_party_payers/v_1/types/third_party_payer_page"
|
234
|
+
require_relative "candidhealth/third_party_payers/v_1/types/third_party_payer_sort_field"
|
235
|
+
require_relative "candidhealth/third_party_payers/v_1/types/third_party_payer_description_update"
|
236
|
+
require_relative "candidhealth/third_party_payers/v_1/types/third_party_payer_category_update"
|
237
|
+
require_relative "candidhealth/third_party_payers/v_1/types/toggle_third_party_payer_enablement_request"
|
238
|
+
require_relative "candidhealth/third_party_payers/v_1/types/third_party_payer_update_request"
|
221
239
|
require_relative "candidhealth/write_offs/v_1/types/write_off"
|
222
240
|
require_relative "candidhealth/write_offs/v_1/types/write_off_create"
|
223
241
|
require_relative "candidhealth/write_offs/v_1/types/patient_write_off_reason"
|
@@ -298,6 +316,7 @@ require_relative "candidhealth/financials/types/allocation"
|
|
298
316
|
require_relative "candidhealth/financials/types/service_line_allocation_target"
|
299
317
|
require_relative "candidhealth/financials/types/claim_allocation_target"
|
300
318
|
require_relative "candidhealth/financials/types/billing_provider_allocation_target"
|
319
|
+
require_relative "candidhealth/financials/types/appointment_allocation_target"
|
301
320
|
require_relative "candidhealth/financials/types/allocation_target"
|
302
321
|
require_relative "candidhealth/financials/types/allocation_create"
|
303
322
|
require_relative "candidhealth/financials/types/allocation_target_create"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: candidhealth
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.26.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ''
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-08-
|
11
|
+
date: 2024-08-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: async-http-faraday
|
@@ -289,6 +289,7 @@ files:
|
|
289
289
|
- lib/candidhealth/financials/types/allocation_create.rb
|
290
290
|
- lib/candidhealth/financials/types/allocation_target.rb
|
291
291
|
- lib/candidhealth/financials/types/allocation_target_create.rb
|
292
|
+
- lib/candidhealth/financials/types/appointment_allocation_target.rb
|
292
293
|
- lib/candidhealth/financials/types/billing_provider_allocation_target.rb
|
293
294
|
- lib/candidhealth/financials/types/claim_allocation_target.rb
|
294
295
|
- lib/candidhealth/financials/types/invoice_update.rb
|
@@ -453,6 +454,8 @@ files:
|
|
453
454
|
- lib/candidhealth/service_facility/client.rb
|
454
455
|
- lib/candidhealth/service_facility/types/encounter_service_facility.rb
|
455
456
|
- lib/candidhealth/service_facility/types/encounter_service_facility_base.rb
|
457
|
+
- lib/candidhealth/service_lines/client.rb
|
458
|
+
- lib/candidhealth/service_lines/v_2/client.rb
|
456
459
|
- lib/candidhealth/service_lines/v_2/types/denial_reason_content.rb
|
457
460
|
- lib/candidhealth/service_lines/v_2/types/drug_identification.rb
|
458
461
|
- lib/candidhealth/service_lines/v_2/types/measurement_unit_code.rb
|
@@ -460,8 +463,10 @@ files:
|
|
460
463
|
- lib/candidhealth/service_lines/v_2/types/service_line.rb
|
461
464
|
- lib/candidhealth/service_lines/v_2/types/service_line_adjustment.rb
|
462
465
|
- lib/candidhealth/service_lines/v_2/types/service_line_create.rb
|
466
|
+
- lib/candidhealth/service_lines/v_2/types/service_line_create_standalone.rb
|
463
467
|
- lib/candidhealth/service_lines/v_2/types/service_line_denial_reason.rb
|
464
468
|
- lib/candidhealth/service_lines/v_2/types/service_line_era_data.rb
|
469
|
+
- lib/candidhealth/service_lines/v_2/types/service_line_update.rb
|
465
470
|
- lib/candidhealth/tags/types/tag.rb
|
466
471
|
- lib/candidhealth/tags/types/tag_color_enum.rb
|
467
472
|
- lib/candidhealth/tags/types/tag_create.rb
|
@@ -482,6 +487,28 @@ files:
|
|
482
487
|
- lib/candidhealth/tasks/v_3/types/task_sort_options.rb
|
483
488
|
- lib/candidhealth/tasks/v_3/types/task_update_v_3.rb
|
484
489
|
- lib/candidhealth/tasks/v_3/types/task_updated_to_deprecated_status_error_type.rb
|
490
|
+
- lib/candidhealth/third_party_payer_payments/client.rb
|
491
|
+
- lib/candidhealth/third_party_payer_payments/v_1/client.rb
|
492
|
+
- lib/candidhealth/third_party_payer_payments/v_1/types/third_party_payer_payment.rb
|
493
|
+
- lib/candidhealth/third_party_payer_payments/v_1/types/third_party_payer_payment_create.rb
|
494
|
+
- lib/candidhealth/third_party_payer_payments/v_1/types/third_party_payer_payment_sort_field.rb
|
495
|
+
- lib/candidhealth/third_party_payer_payments/v_1/types/third_party_payer_payments_page.rb
|
496
|
+
- lib/candidhealth/third_party_payer_refunds/client.rb
|
497
|
+
- lib/candidhealth/third_party_payer_refunds/v_1/client.rb
|
498
|
+
- lib/candidhealth/third_party_payer_refunds/v_1/types/third_party_payer_refund.rb
|
499
|
+
- lib/candidhealth/third_party_payer_refunds/v_1/types/third_party_payer_refund_create.rb
|
500
|
+
- lib/candidhealth/third_party_payer_refunds/v_1/types/third_party_payer_refund_sort_field.rb
|
501
|
+
- lib/candidhealth/third_party_payer_refunds/v_1/types/third_party_payer_refunds_page.rb
|
502
|
+
- lib/candidhealth/third_party_payers/client.rb
|
503
|
+
- lib/candidhealth/third_party_payers/v_1/client.rb
|
504
|
+
- lib/candidhealth/third_party_payers/v_1/types/create_third_party_payer_request.rb
|
505
|
+
- lib/candidhealth/third_party_payers/v_1/types/third_party_payer.rb
|
506
|
+
- lib/candidhealth/third_party_payers/v_1/types/third_party_payer_category_update.rb
|
507
|
+
- lib/candidhealth/third_party_payers/v_1/types/third_party_payer_description_update.rb
|
508
|
+
- lib/candidhealth/third_party_payers/v_1/types/third_party_payer_page.rb
|
509
|
+
- lib/candidhealth/third_party_payers/v_1/types/third_party_payer_sort_field.rb
|
510
|
+
- lib/candidhealth/third_party_payers/v_1/types/third_party_payer_update_request.rb
|
511
|
+
- lib/candidhealth/third_party_payers/v_1/types/toggle_third_party_payer_enablement_request.rb
|
485
512
|
- lib/candidhealth/write_offs/client.rb
|
486
513
|
- lib/candidhealth/write_offs/v_1/client.rb
|
487
514
|
- lib/candidhealth/write_offs/v_1/types/create_write_offs_response.rb
|