change_healthcare-professional_claims 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 01d576583468fc0f846a9dfb45816add0f22802f28ada674d10fea97d9bd5ef1
4
- data.tar.gz: d3cdf7716a964e9d7242377d1fee63f19041f1b359e11e4413c4d2b6b3b7da8f
3
+ metadata.gz: 7b2054d4b8a6eedaba6bc0762e884d64afe13b8b0d6bd2a7504e5fee0baf217f
4
+ data.tar.gz: 9c6e262ed99c8f062ff9239c28cc21c9da6f3c7cb25a57010832423b2f83a651
5
5
  SHA512:
6
- metadata.gz: 9e8815783c2334f8ccb7030c6e322fd621058aa4e3ed124116e2160839815185566707fb9f27036c38bcc69dd7f25aab16995cee6878f6273eab5951400f624f
7
- data.tar.gz: ece745511dd20d0d93d8caf46e93daf5e51246bf6b3bdfc1aa3b2940c46e00611d8d1cea168c2d49a6edf127ab659c39012913aee66043a0a04f1f6ac7afbf31
6
+ metadata.gz: bc2b5c3d9fb8bc7433b307d9340fc0d6a5048c6688ca25bea89c94d567658f8f57a67ff63e2476697b53d4093dd6a0234930e99f544bb941e8dffe9a5a602761
7
+ data.tar.gz: 47cbf1242bf53ba9ffd843fcb3c15849e0580266fb76635d939c9352daf7528e2d0a42f5a65f23bdc45bf1c86d20afd3f1b98d41326c121157094584eec60a77
data/CHANGELOG.md CHANGED
@@ -0,0 +1,4 @@
1
+ ## V0.2.0 - 2021-04-14
2
+
3
+ - Corrected a bad enum value in the `OtherSubscriberName#identification_code_qualifier`
4
+ - Fixed a problem caused by deleting a character
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- change_healthcare-professional_claims (0.1.0)
4
+ change_healthcare-professional_claims (0.2.0)
5
5
  addressable (~> 2.5)
6
6
  typhoeus (~> 1.4)
7
7
 
data/README.md CHANGED
@@ -3,6 +3,8 @@
3
3
  This gem provides access to the [v3 Processional Claims API](https://developers.changehealthcare.com/api/Professional-Claims/v3#) from Change Healthcare.
4
4
  It is primarily a generated swagger client, but does contain a wrapper to make acquiring access tokens in a thread-safe way easier.
5
5
 
6
+ This gem is currently in alpha, as it is not yet properly cleaned up and nice to use --- it's just the generated swagger!
7
+ Use at your own risk.
6
8
 
7
9
  ## Installation
8
10
 
@@ -19,7 +19,7 @@ module ChangeHealthcare
19
19
  attr_accessor(
20
20
  :adjusted_repriced_claim_number, :care_plan_oversight_number, :claim_control_number, :claim_number,
21
21
  :clia_number, :demo_project_identifier, :investigational_device_exemption_number, :mammography_certification_number,
22
- :medical_record_number, :medicare_crossover_reference_id, :prior_authorization_number, :referral_number, :report_information, :repriced_claim_numbe
22
+ :medical_record_number, :medicare_crossover_reference_id, :prior_authorization_number, :referral_number, :report_information, :repriced_claim_number
23
23
  )
24
24
 
25
25
  # Allowed values are
@@ -16,13 +16,32 @@ module ChangeHealthcare
16
16
  module ProfessionalClaims
17
17
  module SwaggerClient
18
18
  class OtherSubscriberName
19
- attr_accessor :other_insured_additional_identifier, :other_insured_address, :other_insured_first_name,
20
- :other_insured_identifier, :other_insured_last_name, :other_insured_middle_name, :other_insured_name_suffix
21
-
22
- # Allowed Values are: 'II' Standard Unique Health Identifier for each Individual in the United States, 'MI' Member Identification Number
23
- attr_accessor :other_insured_identifier_type_code
24
-
25
- # Allowed Values are: '1' Person, '2' Non-Person Entity
19
+ attr_accessor(
20
+ :other_insured_additional_identifier,
21
+ :other_insured_address,
22
+ :other_insured_first_name,
23
+ :other_insured_identifier,
24
+ :other_insured_last_name,
25
+ :other_insured_middle_name,
26
+ :other_insured_name_suffix
27
+ )
28
+
29
+ ##
30
+ # Allowed Values are:
31
+ #
32
+ # - 'II' Standard Unique Health Identifier for each Individual in the United States
33
+ # - 'MI' Member Identification Number
34
+ #
35
+ # @return [String]
36
+ attr_reader :other_insured_identifier_type_code
37
+
38
+ ##
39
+ # Allowed Values are:
40
+ #
41
+ # - '1' Person
42
+ # - '2' Non-Person Entity
43
+ #
44
+ # @return [String]
26
45
  attr_accessor :other_insured_qualifier
27
46
 
28
47
  class EnumAttributeValidator
@@ -124,7 +143,7 @@ module ChangeHealthcare
124
143
  # Custom attribute writer method checking allowed values (enum).
125
144
  # @param [Object] other_insured_identifier_type_code Object to be assigned
126
145
  def other_insured_identifier_type_code=(other_insured_identifier_type_code)
127
- validator = EnumAttributeValidator.new('String', %w[1 2])
146
+ validator = EnumAttributeValidator.new('String', %w[MI II])
128
147
  unless validator.valid?(other_insured_identifier_type_code)
129
148
  raise ArgumentError,
130
149
  %(invalid value for "other_insured_identifier_type_code", must be one of #{validator.allowable_values}.)
@@ -2,6 +2,6 @@
2
2
 
3
3
  module ChangeHealthcare
4
4
  module ProfessionalClaims
5
- VERSION = '0.1.0'
5
+ VERSION = '0.2.0'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: change_healthcare-professional_claims
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anthony Super
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-04-01 00:00:00.000000000 Z
11
+ date: 2021-04-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable