candidhealth 0.39.11 → 0.40.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.
Files changed (37) hide show
  1. checksums.yaml +4 -4
  2. data/lib/candidhealth/charge_capture/v_1/client.rb +4 -0
  3. data/lib/candidhealth/charge_capture/v_1/types/charge_capture_data.rb +16 -2
  4. data/lib/candidhealth/encounters/v_4/client.rb +35 -8
  5. data/lib/candidhealth/encounters/v_4/types/claim_supplemental_information.rb +86 -0
  6. data/lib/candidhealth/encounters/v_4/types/encounter.rb +15 -1
  7. data/lib/candidhealth/encounters/v_4/types/encounter_optional.rb +16 -2
  8. data/lib/candidhealth/encounters/v_4/types/report_transmission_code.rb +14 -0
  9. data/lib/candidhealth/encounters/v_4/types/report_type_code.rb +73 -0
  10. data/lib/candidhealth/non_insurance_payers/v_1/client.rb +4 -2
  11. data/lib/candidhealth/non_insurance_payers/v_1/types/create_non_insurance_payer_request.rb +15 -2
  12. data/lib/candidhealth/pre_encounter/appointments/v_1/client.rb +8 -4
  13. data/lib/candidhealth/pre_encounter/common/types/human_name.rb +15 -2
  14. data/lib/candidhealth/pre_encounter/coverages/v_1/client.rb +8 -4
  15. data/lib/candidhealth/pre_encounter/images/client.rb +32 -0
  16. data/lib/candidhealth/pre_encounter/images/v_1/client.rb +359 -0
  17. data/lib/candidhealth/pre_encounter/images/v_1/types/coverage_association.rb +74 -0
  18. data/lib/candidhealth/pre_encounter/images/v_1/types/coverage_image_side.rb +16 -0
  19. data/lib/candidhealth/pre_encounter/images/v_1/types/image.rb +188 -0
  20. data/lib/candidhealth/pre_encounter/images/v_1/types/image_status.rb +17 -0
  21. data/lib/candidhealth/pre_encounter/images/v_1/types/mutable_image.rb +125 -0
  22. data/lib/candidhealth/pre_encounter/images/v_1/types/patient_association.rb +75 -0
  23. data/lib/candidhealth/pre_encounter/patients/v_1/client.rb +89 -6
  24. data/lib/candidhealth/pre_encounter/patients/v_1/types/authorization.rb +11 -1
  25. data/lib/candidhealth/service_lines/v_2/types/service_line.rb +6 -4
  26. data/lib/candidhealth/service_lines/v_2/types/service_line_create.rb +6 -4
  27. data/lib/candidhealth/service_lines/v_2/types/service_line_create_standalone.rb +6 -4
  28. data/lib/candidhealth/service_lines/v_2/types/service_line_update.rb +10 -8
  29. data/lib/candidhealth/service_lines/v_2/types/test_result_type.rb +1 -0
  30. data/lib/candidhealth/write_offs/v_1/types/non_insurance_payer_write_off.rb +143 -0
  31. data/lib/candidhealth/write_offs/v_1/types/non_insurance_payer_write_off_create.rb +113 -0
  32. data/lib/candidhealth/write_offs/v_1/types/write_off.rb +13 -0
  33. data/lib/candidhealth/write_offs/v_1/types/write_off_create.rb +13 -0
  34. data/lib/candidhealth/x_12/v_1/types/rarc.rb +114 -0
  35. data/lib/requests.rb +2 -2
  36. data/lib/types_export.rb +11 -0
  37. metadata +15 -2
@@ -0,0 +1,359 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "../../../../requests"
4
+ require_relative "types/mutable_image"
5
+ require_relative "types/image"
6
+ require "json"
7
+ require "async"
8
+
9
+ module CandidApiClient
10
+ module PreEncounter
11
+ module Images
12
+ module V1
13
+ class V1Client
14
+ # @return [CandidApiClient::RequestClient]
15
+ attr_reader :request_client
16
+
17
+ # @param request_client [CandidApiClient::RequestClient]
18
+ # @return [CandidApiClient::PreEncounter::Images::V1::V1Client]
19
+ def initialize(request_client:)
20
+ @request_client = request_client
21
+ end
22
+
23
+ # Adds an image. VersionConflictError is returned if a front or back of this
24
+ # coverage already exists.
25
+ #
26
+ # @param request [Hash] Request of type CandidApiClient::PreEncounter::Images::V1::Types::MutableImage, as a Hash
27
+ # * :file_name (String)
28
+ # * :display_name (String)
29
+ # * :file_type (String)
30
+ # * :status (CandidApiClient::PreEncounter::Images::V1::Types::ImageStatus)
31
+ # * :coverage (Hash)
32
+ # * :id (String)
33
+ # * :side (CandidApiClient::PreEncounter::Images::V1::Types::CoverageImageSide)
34
+ # * :patient (Hash)
35
+ # * :id (String)
36
+ # * :notes (String)
37
+ # @param request_options [CandidApiClient::RequestOptions]
38
+ # @return [CandidApiClient::PreEncounter::Images::V1::Types::Image]
39
+ # @example
40
+ # api = CandidApiClient::Client.new(base_url: "https://api.example.com", environment: CandidApiClient::Environment::PRODUCTION)
41
+ # api.pre_encounter.images.v_1.create(request: { file_name: "string", display_name: "string", file_type: "string", status: PENDING, coverage: { id: "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", side: FRONT }, patient: { id: "string", notes: "string" } })
42
+ def create(request:, request_options: nil)
43
+ response = @request_client.conn.post do |req|
44
+ req.options.timeout = request_options.timeout_in_seconds unless request_options&.timeout_in_seconds.nil?
45
+ req.headers["Authorization"] = request_options.token unless request_options&.token.nil?
46
+ req.headers = {
47
+ **(req.headers || {}),
48
+ **@request_client.get_headers,
49
+ **(request_options&.additional_headers || {})
50
+ }.compact
51
+ req.body = { **(request || {}), **(request_options&.additional_body_parameters || {}) }.compact
52
+ req.url "#{@request_client.get_url(environment: PreEncounter,
53
+ request_options: request_options)}/images/v1"
54
+ end
55
+ CandidApiClient::PreEncounter::Images::V1::Types::Image.from_json(json_object: response.body)
56
+ end
57
+
58
+ # Gets an image by imageId.
59
+ #
60
+ # @param id [String]
61
+ # @param request_options [CandidApiClient::RequestOptions]
62
+ # @return [CandidApiClient::PreEncounter::Images::V1::Types::Image]
63
+ # @example
64
+ # api = CandidApiClient::Client.new(base_url: "https://api.example.com", environment: CandidApiClient::Environment::PRODUCTION)
65
+ # api.pre_encounter.images.v_1.get(id: "string")
66
+ def get(id:, request_options: nil)
67
+ response = @request_client.conn.get do |req|
68
+ req.options.timeout = request_options.timeout_in_seconds unless request_options&.timeout_in_seconds.nil?
69
+ req.headers["Authorization"] = request_options.token unless request_options&.token.nil?
70
+ req.headers = {
71
+ **(req.headers || {}),
72
+ **@request_client.get_headers,
73
+ **(request_options&.additional_headers || {})
74
+ }.compact
75
+ req.url "#{@request_client.get_url(environment: PreEncounter,
76
+ request_options: request_options)}/images/v1/#{id}"
77
+ end
78
+ CandidApiClient::PreEncounter::Images::V1::Types::Image.from_json(json_object: response.body)
79
+ end
80
+
81
+ # Updates an Image. The path must contain the most recent version to prevent
82
+ # races.
83
+ #
84
+ # @param id [String]
85
+ # @param version [String]
86
+ # @param request [Hash] Request of type CandidApiClient::PreEncounter::Images::V1::Types::MutableImage, as a Hash
87
+ # * :file_name (String)
88
+ # * :display_name (String)
89
+ # * :file_type (String)
90
+ # * :status (CandidApiClient::PreEncounter::Images::V1::Types::ImageStatus)
91
+ # * :coverage (Hash)
92
+ # * :id (String)
93
+ # * :side (CandidApiClient::PreEncounter::Images::V1::Types::CoverageImageSide)
94
+ # * :patient (Hash)
95
+ # * :id (String)
96
+ # * :notes (String)
97
+ # @param request_options [CandidApiClient::RequestOptions]
98
+ # @return [CandidApiClient::PreEncounter::Images::V1::Types::Image]
99
+ # @example
100
+ # api = CandidApiClient::Client.new(base_url: "https://api.example.com", environment: CandidApiClient::Environment::PRODUCTION)
101
+ # api.pre_encounter.images.v_1.update(
102
+ # id: "string",
103
+ # version: "string",
104
+ # request: { file_name: "string", display_name: "string", file_type: "string", status: PENDING, coverage: { id: "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", side: FRONT }, patient: { id: "string", notes: "string" } }
105
+ # )
106
+ def update(id:, version:, request:, request_options: nil)
107
+ response = @request_client.conn.put do |req|
108
+ req.options.timeout = request_options.timeout_in_seconds unless request_options&.timeout_in_seconds.nil?
109
+ req.headers["Authorization"] = request_options.token unless request_options&.token.nil?
110
+ req.headers = {
111
+ **(req.headers || {}),
112
+ **@request_client.get_headers,
113
+ **(request_options&.additional_headers || {})
114
+ }.compact
115
+ req.body = { **(request || {}), **(request_options&.additional_body_parameters || {}) }.compact
116
+ req.url "#{@request_client.get_url(environment: PreEncounter,
117
+ request_options: request_options)}/images/v1/#{id}/#{version}"
118
+ end
119
+ CandidApiClient::PreEncounter::Images::V1::Types::Image.from_json(json_object: response.body)
120
+ end
121
+
122
+ # Sets an Image as deactivated. The path must contain the most recent version to
123
+ # prevent races.
124
+ #
125
+ # @param id [String]
126
+ # @param version [String]
127
+ # @param request_options [CandidApiClient::RequestOptions]
128
+ # @return [Void]
129
+ # @example
130
+ # api = CandidApiClient::Client.new(base_url: "https://api.example.com", environment: CandidApiClient::Environment::PRODUCTION)
131
+ # api.pre_encounter.images.v_1.deactivate(id: "string", version: "string")
132
+ def deactivate(id:, version:, request_options: nil)
133
+ @request_client.conn.delete do |req|
134
+ req.options.timeout = request_options.timeout_in_seconds unless request_options&.timeout_in_seconds.nil?
135
+ req.headers["Authorization"] = request_options.token unless request_options&.token.nil?
136
+ req.headers = {
137
+ **(req.headers || {}),
138
+ **@request_client.get_headers,
139
+ **(request_options&.additional_headers || {})
140
+ }.compact
141
+ req.url "#{@request_client.get_url(environment: PreEncounter,
142
+ request_options: request_options)}/images/v1/#{id}/#{version}"
143
+ end
144
+ end
145
+
146
+ # Searches for images that match the query parameters.
147
+ #
148
+ # @param patient_id [String]
149
+ # @param coverage_id [String]
150
+ # @param request_options [CandidApiClient::RequestOptions]
151
+ # @return [Array<CandidApiClient::PreEncounter::Images::V1::Types::Image>]
152
+ # @example
153
+ # api = CandidApiClient::Client.new(base_url: "https://api.example.com", environment: CandidApiClient::Environment::PRODUCTION)
154
+ # api.pre_encounter.images.v_1.get_multi(patient_id: "string", coverage_id: "string")
155
+ def get_multi(patient_id: nil, coverage_id: nil, request_options: nil)
156
+ response = @request_client.conn.get do |req|
157
+ req.options.timeout = request_options.timeout_in_seconds unless request_options&.timeout_in_seconds.nil?
158
+ req.headers["Authorization"] = request_options.token unless request_options&.token.nil?
159
+ req.headers = {
160
+ **(req.headers || {}),
161
+ **@request_client.get_headers,
162
+ **(request_options&.additional_headers || {})
163
+ }.compact
164
+ req.params = {
165
+ **(request_options&.additional_query_parameters || {}),
166
+ "patient_id": patient_id,
167
+ "coverage_id": coverage_id
168
+ }.compact
169
+ req.url "#{@request_client.get_url(environment: PreEncounter,
170
+ request_options: request_options)}/images/v1"
171
+ end
172
+ parsed_json = JSON.parse(response.body)
173
+ parsed_json&.map do |item|
174
+ item = item.to_json
175
+ CandidApiClient::PreEncounter::Images::V1::Types::Image.from_json(json_object: item)
176
+ end
177
+ end
178
+ end
179
+
180
+ class AsyncV1Client
181
+ # @return [CandidApiClient::AsyncRequestClient]
182
+ attr_reader :request_client
183
+
184
+ # @param request_client [CandidApiClient::AsyncRequestClient]
185
+ # @return [CandidApiClient::PreEncounter::Images::V1::AsyncV1Client]
186
+ def initialize(request_client:)
187
+ @request_client = request_client
188
+ end
189
+
190
+ # Adds an image. VersionConflictError is returned if a front or back of this
191
+ # coverage already exists.
192
+ #
193
+ # @param request [Hash] Request of type CandidApiClient::PreEncounter::Images::V1::Types::MutableImage, as a Hash
194
+ # * :file_name (String)
195
+ # * :display_name (String)
196
+ # * :file_type (String)
197
+ # * :status (CandidApiClient::PreEncounter::Images::V1::Types::ImageStatus)
198
+ # * :coverage (Hash)
199
+ # * :id (String)
200
+ # * :side (CandidApiClient::PreEncounter::Images::V1::Types::CoverageImageSide)
201
+ # * :patient (Hash)
202
+ # * :id (String)
203
+ # * :notes (String)
204
+ # @param request_options [CandidApiClient::RequestOptions]
205
+ # @return [CandidApiClient::PreEncounter::Images::V1::Types::Image]
206
+ # @example
207
+ # api = CandidApiClient::Client.new(base_url: "https://api.example.com", environment: CandidApiClient::Environment::PRODUCTION)
208
+ # api.pre_encounter.images.v_1.create(request: { file_name: "string", display_name: "string", file_type: "string", status: PENDING, coverage: { id: "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", side: FRONT }, patient: { id: "string", notes: "string" } })
209
+ def create(request:, request_options: nil)
210
+ Async do
211
+ response = @request_client.conn.post do |req|
212
+ req.options.timeout = request_options.timeout_in_seconds unless request_options&.timeout_in_seconds.nil?
213
+ req.headers["Authorization"] = request_options.token unless request_options&.token.nil?
214
+ req.headers = {
215
+ **(req.headers || {}),
216
+ **@request_client.get_headers,
217
+ **(request_options&.additional_headers || {})
218
+ }.compact
219
+ req.body = { **(request || {}), **(request_options&.additional_body_parameters || {}) }.compact
220
+ req.url "#{@request_client.get_url(environment: PreEncounter,
221
+ request_options: request_options)}/images/v1"
222
+ end
223
+ CandidApiClient::PreEncounter::Images::V1::Types::Image.from_json(json_object: response.body)
224
+ end
225
+ end
226
+
227
+ # Gets an image by imageId.
228
+ #
229
+ # @param id [String]
230
+ # @param request_options [CandidApiClient::RequestOptions]
231
+ # @return [CandidApiClient::PreEncounter::Images::V1::Types::Image]
232
+ # @example
233
+ # api = CandidApiClient::Client.new(base_url: "https://api.example.com", environment: CandidApiClient::Environment::PRODUCTION)
234
+ # api.pre_encounter.images.v_1.get(id: "string")
235
+ def get(id:, request_options: nil)
236
+ Async do
237
+ response = @request_client.conn.get do |req|
238
+ req.options.timeout = request_options.timeout_in_seconds unless request_options&.timeout_in_seconds.nil?
239
+ req.headers["Authorization"] = request_options.token unless request_options&.token.nil?
240
+ req.headers = {
241
+ **(req.headers || {}),
242
+ **@request_client.get_headers,
243
+ **(request_options&.additional_headers || {})
244
+ }.compact
245
+ req.url "#{@request_client.get_url(environment: PreEncounter,
246
+ request_options: request_options)}/images/v1/#{id}"
247
+ end
248
+ CandidApiClient::PreEncounter::Images::V1::Types::Image.from_json(json_object: response.body)
249
+ end
250
+ end
251
+
252
+ # Updates an Image. The path must contain the most recent version to prevent
253
+ # races.
254
+ #
255
+ # @param id [String]
256
+ # @param version [String]
257
+ # @param request [Hash] Request of type CandidApiClient::PreEncounter::Images::V1::Types::MutableImage, as a Hash
258
+ # * :file_name (String)
259
+ # * :display_name (String)
260
+ # * :file_type (String)
261
+ # * :status (CandidApiClient::PreEncounter::Images::V1::Types::ImageStatus)
262
+ # * :coverage (Hash)
263
+ # * :id (String)
264
+ # * :side (CandidApiClient::PreEncounter::Images::V1::Types::CoverageImageSide)
265
+ # * :patient (Hash)
266
+ # * :id (String)
267
+ # * :notes (String)
268
+ # @param request_options [CandidApiClient::RequestOptions]
269
+ # @return [CandidApiClient::PreEncounter::Images::V1::Types::Image]
270
+ # @example
271
+ # api = CandidApiClient::Client.new(base_url: "https://api.example.com", environment: CandidApiClient::Environment::PRODUCTION)
272
+ # api.pre_encounter.images.v_1.update(
273
+ # id: "string",
274
+ # version: "string",
275
+ # request: { file_name: "string", display_name: "string", file_type: "string", status: PENDING, coverage: { id: "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", side: FRONT }, patient: { id: "string", notes: "string" } }
276
+ # )
277
+ def update(id:, version:, request:, request_options: nil)
278
+ Async do
279
+ response = @request_client.conn.put do |req|
280
+ req.options.timeout = request_options.timeout_in_seconds unless request_options&.timeout_in_seconds.nil?
281
+ req.headers["Authorization"] = request_options.token unless request_options&.token.nil?
282
+ req.headers = {
283
+ **(req.headers || {}),
284
+ **@request_client.get_headers,
285
+ **(request_options&.additional_headers || {})
286
+ }.compact
287
+ req.body = { **(request || {}), **(request_options&.additional_body_parameters || {}) }.compact
288
+ req.url "#{@request_client.get_url(environment: PreEncounter,
289
+ request_options: request_options)}/images/v1/#{id}/#{version}"
290
+ end
291
+ CandidApiClient::PreEncounter::Images::V1::Types::Image.from_json(json_object: response.body)
292
+ end
293
+ end
294
+
295
+ # Sets an Image as deactivated. The path must contain the most recent version to
296
+ # prevent races.
297
+ #
298
+ # @param id [String]
299
+ # @param version [String]
300
+ # @param request_options [CandidApiClient::RequestOptions]
301
+ # @return [Void]
302
+ # @example
303
+ # api = CandidApiClient::Client.new(base_url: "https://api.example.com", environment: CandidApiClient::Environment::PRODUCTION)
304
+ # api.pre_encounter.images.v_1.deactivate(id: "string", version: "string")
305
+ def deactivate(id:, version:, request_options: nil)
306
+ Async do
307
+ @request_client.conn.delete do |req|
308
+ req.options.timeout = request_options.timeout_in_seconds unless request_options&.timeout_in_seconds.nil?
309
+ req.headers["Authorization"] = request_options.token unless request_options&.token.nil?
310
+ req.headers = {
311
+ **(req.headers || {}),
312
+ **@request_client.get_headers,
313
+ **(request_options&.additional_headers || {})
314
+ }.compact
315
+ req.url "#{@request_client.get_url(environment: PreEncounter,
316
+ request_options: request_options)}/images/v1/#{id}/#{version}"
317
+ end
318
+ end
319
+ end
320
+
321
+ # Searches for images that match the query parameters.
322
+ #
323
+ # @param patient_id [String]
324
+ # @param coverage_id [String]
325
+ # @param request_options [CandidApiClient::RequestOptions]
326
+ # @return [Array<CandidApiClient::PreEncounter::Images::V1::Types::Image>]
327
+ # @example
328
+ # api = CandidApiClient::Client.new(base_url: "https://api.example.com", environment: CandidApiClient::Environment::PRODUCTION)
329
+ # api.pre_encounter.images.v_1.get_multi(patient_id: "string", coverage_id: "string")
330
+ def get_multi(patient_id: nil, coverage_id: nil, request_options: nil)
331
+ Async do
332
+ response = @request_client.conn.get do |req|
333
+ req.options.timeout = request_options.timeout_in_seconds unless request_options&.timeout_in_seconds.nil?
334
+ req.headers["Authorization"] = request_options.token unless request_options&.token.nil?
335
+ req.headers = {
336
+ **(req.headers || {}),
337
+ **@request_client.get_headers,
338
+ **(request_options&.additional_headers || {})
339
+ }.compact
340
+ req.params = {
341
+ **(request_options&.additional_query_parameters || {}),
342
+ "patient_id": patient_id,
343
+ "coverage_id": coverage_id
344
+ }.compact
345
+ req.url "#{@request_client.get_url(environment: PreEncounter,
346
+ request_options: request_options)}/images/v1"
347
+ end
348
+ parsed_json = JSON.parse(response.body)
349
+ parsed_json&.map do |item|
350
+ item = item.to_json
351
+ CandidApiClient::PreEncounter::Images::V1::Types::Image.from_json(json_object: item)
352
+ end
353
+ end
354
+ end
355
+ end
356
+ end
357
+ end
358
+ end
359
+ end
@@ -0,0 +1,74 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "coverage_image_side"
4
+ require "ostruct"
5
+ require "json"
6
+
7
+ module CandidApiClient
8
+ module PreEncounter
9
+ module Images
10
+ module V1
11
+ module Types
12
+ # An association to a Coverage.
13
+ class CoverageAssociation
14
+ # @return [String]
15
+ attr_reader :id
16
+ # @return [CandidApiClient::PreEncounter::Images::V1::Types::CoverageImageSide]
17
+ attr_reader :side
18
+ # @return [OpenStruct] Additional properties unmapped to the current class definition
19
+ attr_reader :additional_properties
20
+ # @return [Object]
21
+ attr_reader :_field_set
22
+ protected :_field_set
23
+
24
+ OMIT = Object.new
25
+
26
+ # @param id [String]
27
+ # @param side [CandidApiClient::PreEncounter::Images::V1::Types::CoverageImageSide]
28
+ # @param additional_properties [OpenStruct] Additional properties unmapped to the current class definition
29
+ # @return [CandidApiClient::PreEncounter::Images::V1::Types::CoverageAssociation]
30
+ def initialize(id:, side:, additional_properties: nil)
31
+ @id = id
32
+ @side = side
33
+ @additional_properties = additional_properties
34
+ @_field_set = { "id": id, "side": side }
35
+ end
36
+
37
+ # Deserialize a JSON object to an instance of CoverageAssociation
38
+ #
39
+ # @param json_object [String]
40
+ # @return [CandidApiClient::PreEncounter::Images::V1::Types::CoverageAssociation]
41
+ def self.from_json(json_object:)
42
+ struct = JSON.parse(json_object, object_class: OpenStruct)
43
+ id = struct["id"]
44
+ side = struct["side"]
45
+ new(
46
+ id: id,
47
+ side: side,
48
+ additional_properties: struct
49
+ )
50
+ end
51
+
52
+ # Serialize an instance of CoverageAssociation to a JSON object
53
+ #
54
+ # @return [String]
55
+ def to_json(*_args)
56
+ @_field_set&.to_json
57
+ end
58
+
59
+ # Leveraged for Union-type generation, validate_raw attempts to parse the given
60
+ # hash and check each fields type against the current object's property
61
+ # definitions.
62
+ #
63
+ # @param obj [Object]
64
+ # @return [Void]
65
+ def self.validate_raw(obj:)
66
+ obj.id.is_a?(String) != false || raise("Passed value for field obj.id is not the expected type, validation failed.")
67
+ obj.side.is_a?(CandidApiClient::PreEncounter::Images::V1::Types::CoverageImageSide) != false || raise("Passed value for field obj.side is not the expected type, validation failed.")
68
+ end
69
+ end
70
+ end
71
+ end
72
+ end
73
+ end
74
+ end
@@ -0,0 +1,16 @@
1
+ # frozen_string_literal: true
2
+
3
+ module CandidApiClient
4
+ module PreEncounter
5
+ module Images
6
+ module V1
7
+ module Types
8
+ class CoverageImageSide
9
+ FRONT = "FRONT"
10
+ BACK = "BACK"
11
+ end
12
+ end
13
+ end
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,188 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "date"
4
+ require_relative "image_status"
5
+ require_relative "coverage_association"
6
+ require_relative "patient_association"
7
+ require "ostruct"
8
+ require "json"
9
+
10
+ module CandidApiClient
11
+ module PreEncounter
12
+ module Images
13
+ module V1
14
+ module Types
15
+ # An Image object with immutable server-owned properties.
16
+ class Image
17
+ # @return [String]
18
+ attr_reader :id
19
+ # @return [String] A signed URL to the image. This url can be used to upload an image to GCP
20
+ # storage or to read the image contents.
21
+ attr_reader :signed_url
22
+ # @return [String] The organization that owns this object.
23
+ attr_reader :organization_id
24
+ # @return [Boolean] True if the object is deactivated. Deactivated objects are not returned in
25
+ # search results but are returned in all other endpoints including scan.
26
+ attr_reader :deactivated
27
+ # @return [Integer] The version of the object. Any update to any property of an object object will
28
+ # create a new version.
29
+ attr_reader :version
30
+ # @return [DateTime]
31
+ attr_reader :updated_at
32
+ # @return [String] The user ID of the user who last updated the object.
33
+ attr_reader :updating_user_id
34
+ # @return [String]
35
+ attr_reader :file_name
36
+ # @return [String]
37
+ attr_reader :display_name
38
+ # @return [String]
39
+ attr_reader :file_type
40
+ # @return [CandidApiClient::PreEncounter::Images::V1::Types::ImageStatus]
41
+ attr_reader :status
42
+ # @return [CandidApiClient::PreEncounter::Images::V1::Types::CoverageAssociation]
43
+ attr_reader :coverage
44
+ # @return [CandidApiClient::PreEncounter::Images::V1::Types::PatientAssociation]
45
+ attr_reader :patient
46
+ # @return [OpenStruct] Additional properties unmapped to the current class definition
47
+ attr_reader :additional_properties
48
+ # @return [Object]
49
+ attr_reader :_field_set
50
+ protected :_field_set
51
+
52
+ OMIT = Object.new
53
+
54
+ # @param id [String]
55
+ # @param signed_url [String] A signed URL to the image. This url can be used to upload an image to GCP
56
+ # storage or to read the image contents.
57
+ # @param organization_id [String] The organization that owns this object.
58
+ # @param deactivated [Boolean] True if the object is deactivated. Deactivated objects are not returned in
59
+ # search results but are returned in all other endpoints including scan.
60
+ # @param version [Integer] The version of the object. Any update to any property of an object object will
61
+ # create a new version.
62
+ # @param updated_at [DateTime]
63
+ # @param updating_user_id [String] The user ID of the user who last updated the object.
64
+ # @param file_name [String]
65
+ # @param display_name [String]
66
+ # @param file_type [String]
67
+ # @param status [CandidApiClient::PreEncounter::Images::V1::Types::ImageStatus]
68
+ # @param coverage [CandidApiClient::PreEncounter::Images::V1::Types::CoverageAssociation]
69
+ # @param patient [CandidApiClient::PreEncounter::Images::V1::Types::PatientAssociation]
70
+ # @param additional_properties [OpenStruct] Additional properties unmapped to the current class definition
71
+ # @return [CandidApiClient::PreEncounter::Images::V1::Types::Image]
72
+ def initialize(id:, signed_url:, organization_id:, deactivated:, version:, updated_at:, updating_user_id:,
73
+ file_name:, display_name:, file_type:, status:, coverage: OMIT, patient: OMIT, additional_properties: nil)
74
+ @id = id
75
+ @signed_url = signed_url
76
+ @organization_id = organization_id
77
+ @deactivated = deactivated
78
+ @version = version
79
+ @updated_at = updated_at
80
+ @updating_user_id = updating_user_id
81
+ @file_name = file_name
82
+ @display_name = display_name
83
+ @file_type = file_type
84
+ @status = status
85
+ @coverage = coverage if coverage != OMIT
86
+ @patient = patient if patient != OMIT
87
+ @additional_properties = additional_properties
88
+ @_field_set = {
89
+ "id": id,
90
+ "signed_url": signed_url,
91
+ "organization_id": organization_id,
92
+ "deactivated": deactivated,
93
+ "version": version,
94
+ "updated_at": updated_at,
95
+ "updating_user_id": updating_user_id,
96
+ "file_name": file_name,
97
+ "display_name": display_name,
98
+ "file_type": file_type,
99
+ "status": status,
100
+ "coverage": coverage,
101
+ "patient": patient
102
+ }.reject do |_k, v|
103
+ v == OMIT
104
+ end
105
+ end
106
+
107
+ # Deserialize a JSON object to an instance of Image
108
+ #
109
+ # @param json_object [String]
110
+ # @return [CandidApiClient::PreEncounter::Images::V1::Types::Image]
111
+ def self.from_json(json_object:)
112
+ struct = JSON.parse(json_object, object_class: OpenStruct)
113
+ parsed_json = JSON.parse(json_object)
114
+ id = struct["id"]
115
+ signed_url = struct["signed_url"]
116
+ organization_id = struct["organization_id"]
117
+ deactivated = struct["deactivated"]
118
+ version = struct["version"]
119
+ updated_at = (DateTime.parse(parsed_json["updated_at"]) unless parsed_json["updated_at"].nil?)
120
+ updating_user_id = struct["updating_user_id"]
121
+ file_name = struct["file_name"]
122
+ display_name = struct["display_name"]
123
+ file_type = struct["file_type"]
124
+ status = struct["status"]
125
+ if parsed_json["coverage"].nil?
126
+ coverage = nil
127
+ else
128
+ coverage = parsed_json["coverage"].to_json
129
+ coverage = CandidApiClient::PreEncounter::Images::V1::Types::CoverageAssociation.from_json(json_object: coverage)
130
+ end
131
+ if parsed_json["patient"].nil?
132
+ patient = nil
133
+ else
134
+ patient = parsed_json["patient"].to_json
135
+ patient = CandidApiClient::PreEncounter::Images::V1::Types::PatientAssociation.from_json(json_object: patient)
136
+ end
137
+ new(
138
+ id: id,
139
+ signed_url: signed_url,
140
+ organization_id: organization_id,
141
+ deactivated: deactivated,
142
+ version: version,
143
+ updated_at: updated_at,
144
+ updating_user_id: updating_user_id,
145
+ file_name: file_name,
146
+ display_name: display_name,
147
+ file_type: file_type,
148
+ status: status,
149
+ coverage: coverage,
150
+ patient: patient,
151
+ additional_properties: struct
152
+ )
153
+ end
154
+
155
+ # Serialize an instance of Image to a JSON object
156
+ #
157
+ # @return [String]
158
+ def to_json(*_args)
159
+ @_field_set&.to_json
160
+ end
161
+
162
+ # Leveraged for Union-type generation, validate_raw attempts to parse the given
163
+ # hash and check each fields type against the current object's property
164
+ # definitions.
165
+ #
166
+ # @param obj [Object]
167
+ # @return [Void]
168
+ def self.validate_raw(obj:)
169
+ obj.id.is_a?(String) != false || raise("Passed value for field obj.id is not the expected type, validation failed.")
170
+ obj.signed_url.is_a?(String) != false || raise("Passed value for field obj.signed_url is not the expected type, validation failed.")
171
+ obj.organization_id.is_a?(String) != false || raise("Passed value for field obj.organization_id is not the expected type, validation failed.")
172
+ obj.deactivated.is_a?(Boolean) != false || raise("Passed value for field obj.deactivated is not the expected type, validation failed.")
173
+ obj.version.is_a?(Integer) != false || raise("Passed value for field obj.version is not the expected type, validation failed.")
174
+ obj.updated_at.is_a?(DateTime) != false || raise("Passed value for field obj.updated_at is not the expected type, validation failed.")
175
+ obj.updating_user_id.is_a?(String) != false || raise("Passed value for field obj.updating_user_id is not the expected type, validation failed.")
176
+ obj.file_name.is_a?(String) != false || raise("Passed value for field obj.file_name is not the expected type, validation failed.")
177
+ obj.display_name.is_a?(String) != false || raise("Passed value for field obj.display_name is not the expected type, validation failed.")
178
+ obj.file_type.is_a?(String) != false || raise("Passed value for field obj.file_type is not the expected type, validation failed.")
179
+ obj.status.is_a?(CandidApiClient::PreEncounter::Images::V1::Types::ImageStatus) != false || raise("Passed value for field obj.status is not the expected type, validation failed.")
180
+ obj.coverage.nil? || CandidApiClient::PreEncounter::Images::V1::Types::CoverageAssociation.validate_raw(obj: obj.coverage)
181
+ obj.patient.nil? || CandidApiClient::PreEncounter::Images::V1::Types::PatientAssociation.validate_raw(obj: obj.patient)
182
+ end
183
+ end
184
+ end
185
+ end
186
+ end
187
+ end
188
+ end
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ module CandidApiClient
4
+ module PreEncounter
5
+ module Images
6
+ module V1
7
+ module Types
8
+ class ImageStatus
9
+ PENDING = "PENDING"
10
+ UPLOADED = "UPLOADED"
11
+ FAILED = "FAILED"
12
+ end
13
+ end
14
+ end
15
+ end
16
+ end
17
+ end