vericred_client 0.0.35 → 0.0.37

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 (55) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/ACAPlan.md +2 -1
  4. data/docs/ACAPlan2018.md +2 -1
  5. data/docs/ACAPlan2018Search.md +2 -1
  6. data/docs/ACAPlan2018SearchResult.md +2 -1
  7. data/docs/ACAPlanPre2018.md +2 -1
  8. data/docs/ACAPlanPre2018Search.md +2 -1
  9. data/docs/ACAPlanPre2018SearchResult.md +1 -0
  10. data/docs/ACAPlanSearch.md +2 -1
  11. data/docs/DentalPlan.md +1 -0
  12. data/docs/DentalPlanSearch.md +1 -0
  13. data/docs/DentalPlanSearchRequest.md +1 -0
  14. data/docs/MedicalPlanSearchRequest.md +1 -0
  15. data/docs/Plan.md +1 -0
  16. data/docs/PlanMedicare.md +1 -0
  17. data/docs/PlanMedicareBulk.md +1 -0
  18. data/docs/VisionPlan.md +1 -0
  19. data/docs/VisionPlanSearchRequest.md +1 -0
  20. data/lib/vericred_client/models/aca_plan.rb +13 -3
  21. data/lib/vericred_client/models/aca_plan2018.rb +13 -3
  22. data/lib/vericred_client/models/aca_plan2018_search.rb +13 -3
  23. data/lib/vericred_client/models/aca_plan2018_search_result.rb +13 -3
  24. data/lib/vericred_client/models/aca_plan_pre2018.rb +13 -3
  25. data/lib/vericred_client/models/aca_plan_pre2018_search.rb +13 -3
  26. data/lib/vericred_client/models/aca_plan_pre2018_search_result.rb +11 -1
  27. data/lib/vericred_client/models/aca_plan_search.rb +13 -3
  28. data/lib/vericred_client/models/dental_plan.rb +11 -1
  29. data/lib/vericred_client/models/dental_plan_search.rb +11 -1
  30. data/lib/vericred_client/models/dental_plan_search_request.rb +16 -4
  31. data/lib/vericred_client/models/medical_plan_search_request.rb +16 -4
  32. data/lib/vericred_client/models/plan.rb +11 -1
  33. data/lib/vericred_client/models/plan_medicare.rb +11 -1
  34. data/lib/vericred_client/models/plan_medicare_bulk.rb +11 -1
  35. data/lib/vericred_client/models/vision_plan.rb +11 -1
  36. data/lib/vericred_client/models/vision_plan_search_request.rb +16 -4
  37. data/lib/vericred_client/version.rb +1 -1
  38. data/spec/models/aca_plan2018_search_result_spec.rb +6 -0
  39. data/spec/models/aca_plan2018_search_spec.rb +6 -0
  40. data/spec/models/aca_plan2018_spec.rb +6 -0
  41. data/spec/models/aca_plan_pre2018_search_result_spec.rb +6 -0
  42. data/spec/models/aca_plan_pre2018_search_spec.rb +6 -0
  43. data/spec/models/aca_plan_pre2018_spec.rb +6 -0
  44. data/spec/models/aca_plan_search_spec.rb +6 -0
  45. data/spec/models/aca_plan_spec.rb +6 -0
  46. data/spec/models/dental_plan_search_request_spec.rb +6 -0
  47. data/spec/models/dental_plan_search_spec.rb +6 -0
  48. data/spec/models/dental_plan_spec.rb +6 -0
  49. data/spec/models/medical_plan_search_request_spec.rb +6 -0
  50. data/spec/models/plan_medicare_bulk_spec.rb +6 -0
  51. data/spec/models/plan_medicare_spec.rb +6 -0
  52. data/spec/models/plan_spec.rb +6 -0
  53. data/spec/models/vision_plan_search_request_spec.rb +6 -0
  54. data/spec/models/vision_plan_spec.rb +6 -0
  55. metadata +2 -2
@@ -1011,6 +1011,9 @@ require 'date'
1011
1011
  module VericredClient
1012
1012
 
1013
1013
  class Plan
1014
+ # Most recent Disclaimer issued for this Plan
1015
+ attr_accessor :carrier_disclaimer
1016
+
1014
1017
  # List of identifiers of this Plan
1015
1018
  attr_accessor :identifiers
1016
1019
 
@@ -1033,6 +1036,7 @@ module VericredClient
1033
1036
  # Attribute mapping from ruby-style variable name to JSON key.
1034
1037
  def self.attribute_map
1035
1038
  {
1039
+ :'carrier_disclaimer' => :'carrier_disclaimer',
1036
1040
  :'identifiers' => :'identifiers',
1037
1041
  :'name' => :'name',
1038
1042
  :'network_size' => :'network_size',
@@ -1045,6 +1049,7 @@ module VericredClient
1045
1049
  # Attribute type mapping.
1046
1050
  def self.swagger_types
1047
1051
  {
1052
+ :'carrier_disclaimer' => :'String',
1048
1053
  :'identifiers' => :'Array<PlanIdentifier>',
1049
1054
  :'name' => :'String',
1050
1055
  :'network_size' => :'Integer',
@@ -1062,6 +1067,10 @@ module VericredClient
1062
1067
  # convert string to symbol for hash key
1063
1068
  attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
1064
1069
 
1070
+ if attributes.has_key?(:'carrier_disclaimer')
1071
+ self.carrier_disclaimer = attributes[:'carrier_disclaimer']
1072
+ end
1073
+
1065
1074
  if attributes.has_key?(:'identifiers')
1066
1075
  if (value = attributes[:'identifiers']).is_a?(Array)
1067
1076
  self.identifiers = value
@@ -1110,6 +1119,7 @@ module VericredClient
1110
1119
  def ==(o)
1111
1120
  return true if self.equal?(o)
1112
1121
  self.class == o.class &&
1122
+ carrier_disclaimer == o.carrier_disclaimer &&
1113
1123
  identifiers == o.identifiers &&
1114
1124
  name == o.name &&
1115
1125
  network_size == o.network_size &&
@@ -1127,7 +1137,7 @@ module VericredClient
1127
1137
  # Calculates hash code according to all attributes.
1128
1138
  # @return [Fixnum] Hash code
1129
1139
  def hash
1130
- [identifiers, name, network_size, networks, plan_type, source].hash
1140
+ [carrier_disclaimer, identifiers, name, network_size, networks, plan_type, source].hash
1131
1141
  end
1132
1142
 
1133
1143
  # Builds the object from hash
@@ -1011,6 +1011,9 @@ require 'date'
1011
1011
  module VericredClient
1012
1012
 
1013
1013
  class PlanMedicare
1014
+ # Most recent Disclaimer issued for this Plan
1015
+ attr_accessor :carrier_disclaimer
1016
+
1014
1017
  # Government-issued MedicareAdvantage plan ID
1015
1018
  attr_accessor :id
1016
1019
 
@@ -1036,6 +1039,7 @@ module VericredClient
1036
1039
  # Attribute mapping from ruby-style variable name to JSON key.
1037
1040
  def self.attribute_map
1038
1041
  {
1042
+ :'carrier_disclaimer' => :'carrier_disclaimer',
1039
1043
  :'id' => :'id',
1040
1044
  :'identifiers' => :'identifiers',
1041
1045
  :'name' => :'name',
@@ -1049,6 +1053,7 @@ module VericredClient
1049
1053
  # Attribute type mapping.
1050
1054
  def self.swagger_types
1051
1055
  {
1056
+ :'carrier_disclaimer' => :'String',
1052
1057
  :'id' => :'String',
1053
1058
  :'identifiers' => :'Array<PlanIdentifier>',
1054
1059
  :'name' => :'String',
@@ -1067,6 +1072,10 @@ module VericredClient
1067
1072
  # convert string to symbol for hash key
1068
1073
  attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
1069
1074
 
1075
+ if attributes.has_key?(:'carrier_disclaimer')
1076
+ self.carrier_disclaimer = attributes[:'carrier_disclaimer']
1077
+ end
1078
+
1070
1079
  if attributes.has_key?(:'id')
1071
1080
  self.id = attributes[:'id']
1072
1081
  end
@@ -1119,6 +1128,7 @@ module VericredClient
1119
1128
  def ==(o)
1120
1129
  return true if self.equal?(o)
1121
1130
  self.class == o.class &&
1131
+ carrier_disclaimer == o.carrier_disclaimer &&
1122
1132
  id == o.id &&
1123
1133
  identifiers == o.identifiers &&
1124
1134
  name == o.name &&
@@ -1137,7 +1147,7 @@ module VericredClient
1137
1147
  # Calculates hash code according to all attributes.
1138
1148
  # @return [Fixnum] Hash code
1139
1149
  def hash
1140
- [id, identifiers, name, network_size, networks, plan_type, source].hash
1150
+ [carrier_disclaimer, id, identifiers, name, network_size, networks, plan_type, source].hash
1141
1151
  end
1142
1152
 
1143
1153
  # Builds the object from hash
@@ -1011,6 +1011,9 @@ require 'date'
1011
1011
  module VericredClient
1012
1012
 
1013
1013
  class PlanMedicareBulk
1014
+ # Most recent Disclaimer issued for this Plan
1015
+ attr_accessor :carrier_disclaimer
1016
+
1014
1017
  # Name of the Plan's Formulary
1015
1018
  attr_accessor :formulary_name
1016
1019
 
@@ -1042,6 +1045,7 @@ module VericredClient
1042
1045
  # Attribute mapping from ruby-style variable name to JSON key.
1043
1046
  def self.attribute_map
1044
1047
  {
1048
+ :'carrier_disclaimer' => :'carrier_disclaimer',
1045
1049
  :'formulary_name' => :'formulary_name',
1046
1050
  :'id' => :'id',
1047
1051
  :'identifiers' => :'identifiers',
@@ -1057,6 +1061,7 @@ module VericredClient
1057
1061
  # Attribute type mapping.
1058
1062
  def self.swagger_types
1059
1063
  {
1064
+ :'carrier_disclaimer' => :'String',
1060
1065
  :'formulary_name' => :'String',
1061
1066
  :'id' => :'String',
1062
1067
  :'identifiers' => :'Array<PlanIdentifier>',
@@ -1077,6 +1082,10 @@ module VericredClient
1077
1082
  # convert string to symbol for hash key
1078
1083
  attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
1079
1084
 
1085
+ if attributes.has_key?(:'carrier_disclaimer')
1086
+ self.carrier_disclaimer = attributes[:'carrier_disclaimer']
1087
+ end
1088
+
1080
1089
  if attributes.has_key?(:'formulary_name')
1081
1090
  self.formulary_name = attributes[:'formulary_name']
1082
1091
  end
@@ -1137,6 +1146,7 @@ module VericredClient
1137
1146
  def ==(o)
1138
1147
  return true if self.equal?(o)
1139
1148
  self.class == o.class &&
1149
+ carrier_disclaimer == o.carrier_disclaimer &&
1140
1150
  formulary_name == o.formulary_name &&
1141
1151
  id == o.id &&
1142
1152
  identifiers == o.identifiers &&
@@ -1157,7 +1167,7 @@ module VericredClient
1157
1167
  # Calculates hash code according to all attributes.
1158
1168
  # @return [Fixnum] Hash code
1159
1169
  def hash
1160
- [formulary_name, id, identifiers, name, network_size, networks, plan_type, source, updated_at].hash
1170
+ [carrier_disclaimer, formulary_name, id, identifiers, name, network_size, networks, plan_type, source, updated_at].hash
1161
1171
  end
1162
1172
 
1163
1173
  # Builds the object from hash
@@ -1020,6 +1020,9 @@ module VericredClient
1020
1020
  # Link to the summary of benefits and coverage (SBC) document.
1021
1021
  attr_accessor :benefits_summary_url
1022
1022
 
1023
+ # Most recent Disclaimer issued for this Plan
1024
+ attr_accessor :carrier_disclaimer
1025
+
1023
1026
  # The vision plan identifier
1024
1027
  attr_accessor :id
1025
1028
 
@@ -1057,6 +1060,7 @@ module VericredClient
1057
1060
  :'audience' => :'audience',
1058
1061
  :'benefits' => :'benefits',
1059
1062
  :'benefits_summary_url' => :'benefits_summary_url',
1063
+ :'carrier_disclaimer' => :'carrier_disclaimer',
1060
1064
  :'id' => :'id',
1061
1065
  :'identifiers' => :'identifiers',
1062
1066
  :'issuer_name' => :'issuer_name',
@@ -1076,6 +1080,7 @@ module VericredClient
1076
1080
  :'audience' => :'String',
1077
1081
  :'benefits' => :'VisionPlanBenefits',
1078
1082
  :'benefits_summary_url' => :'String',
1083
+ :'carrier_disclaimer' => :'String',
1079
1084
  :'id' => :'String',
1080
1085
  :'identifiers' => :'Array<AncillaryPlanIdentifier>',
1081
1086
  :'issuer_name' => :'String',
@@ -1109,6 +1114,10 @@ module VericredClient
1109
1114
  self.benefits_summary_url = attributes[:'benefits_summary_url']
1110
1115
  end
1111
1116
 
1117
+ if attributes.has_key?(:'carrier_disclaimer')
1118
+ self.carrier_disclaimer = attributes[:'carrier_disclaimer']
1119
+ end
1120
+
1112
1121
  if attributes.has_key?(:'id')
1113
1122
  self.id = attributes[:'id']
1114
1123
  end
@@ -1174,6 +1183,7 @@ module VericredClient
1174
1183
  audience == o.audience &&
1175
1184
  benefits == o.benefits &&
1176
1185
  benefits_summary_url == o.benefits_summary_url &&
1186
+ carrier_disclaimer == o.carrier_disclaimer &&
1177
1187
  id == o.id &&
1178
1188
  identifiers == o.identifiers &&
1179
1189
  issuer_name == o.issuer_name &&
@@ -1195,7 +1205,7 @@ module VericredClient
1195
1205
  # Calculates hash code according to all attributes.
1196
1206
  # @return [Fixnum] Hash code
1197
1207
  def hash
1198
- [audience, benefits, benefits_summary_url, id, identifiers, issuer_name, logo_url, name, plan_type, premium, premium_source, source, stand_alone].hash
1208
+ [audience, benefits, benefits_summary_url, carrier_disclaimer, id, identifiers, issuer_name, logo_url, name, plan_type, premium, premium_source, source, stand_alone].hash
1199
1209
  end
1200
1210
 
1201
1211
  # Builds the object from hash
@@ -1032,6 +1032,9 @@ module VericredClient
1032
1032
  # 5-digit zip code - this helps determine pricing.
1033
1033
  attr_accessor :zip_code
1034
1034
 
1035
+ # Vericred IDs of the issuers to include in search
1036
+ attr_accessor :issuer_vericred_ids
1037
+
1035
1038
 
1036
1039
  # Attribute mapping from ruby-style variable name to JSON key.
1037
1040
  def self.attribute_map
@@ -1042,7 +1045,8 @@ module VericredClient
1042
1045
  :'market' => :'market',
1043
1046
  :'page' => :'page',
1044
1047
  :'per_page' => :'per_page',
1045
- :'zip_code' => :'zip_code'
1048
+ :'zip_code' => :'zip_code',
1049
+ :'issuer_vericred_ids' => :'issuer_vericred_ids'
1046
1050
  }
1047
1051
  end
1048
1052
 
@@ -1055,7 +1059,8 @@ module VericredClient
1055
1059
  :'market' => :'String',
1056
1060
  :'page' => :'Integer',
1057
1061
  :'per_page' => :'Integer',
1058
- :'zip_code' => :'String'
1062
+ :'zip_code' => :'String',
1063
+ :'issuer_vericred_ids' => :'Array<String>'
1059
1064
  }
1060
1065
  end
1061
1066
 
@@ -1097,6 +1102,12 @@ module VericredClient
1097
1102
  self.zip_code = attributes[:'zip_code']
1098
1103
  end
1099
1104
 
1105
+ if attributes.has_key?(:'issuer_vericred_ids')
1106
+ if (value = attributes[:'issuer_vericred_ids']).is_a?(Array)
1107
+ self.issuer_vericred_ids = value
1108
+ end
1109
+ end
1110
+
1100
1111
  end
1101
1112
 
1102
1113
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -1123,7 +1134,8 @@ module VericredClient
1123
1134
  market == o.market &&
1124
1135
  page == o.page &&
1125
1136
  per_page == o.per_page &&
1126
- zip_code == o.zip_code
1137
+ zip_code == o.zip_code &&
1138
+ issuer_vericred_ids == o.issuer_vericred_ids
1127
1139
  end
1128
1140
 
1129
1141
  # @see the `==` method
@@ -1135,7 +1147,7 @@ module VericredClient
1135
1147
  # Calculates hash code according to all attributes.
1136
1148
  # @return [Fixnum] Hash code
1137
1149
  def hash
1138
- [applicants, enrollment_date, fips_code, market, page, per_page, zip_code].hash
1150
+ [applicants, enrollment_date, fips_code, market, page, per_page, zip_code, issuer_vericred_ids].hash
1139
1151
  end
1140
1152
 
1141
1153
  # Builds the object from hash
@@ -1007,5 +1007,5 @@ limitations under the License.
1007
1007
  =end
1008
1008
 
1009
1009
  module VericredClient
1010
- VERSION = "0.0.35"
1010
+ VERSION = "0.0.37"
1011
1011
  end
@@ -1070,6 +1070,12 @@ describe 'ACAPlan2018SearchResult' do
1070
1070
  end
1071
1071
  end
1072
1072
 
1073
+ describe 'test attribute "carrier_disclaimer"' do
1074
+ it 'should work' do
1075
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
1076
+ end
1077
+ end
1078
+
1073
1079
  describe 'test attribute "carrier_name"' do
1074
1080
  it 'should work' do
1075
1081
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -1070,6 +1070,12 @@ describe 'ACAPlan2018Search' do
1070
1070
  end
1071
1071
  end
1072
1072
 
1073
+ describe 'test attribute "carrier_disclaimer"' do
1074
+ it 'should work' do
1075
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
1076
+ end
1077
+ end
1078
+
1073
1079
  describe 'test attribute "carrier_name"' do
1074
1080
  it 'should work' do
1075
1081
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -1070,6 +1070,12 @@ describe 'ACAPlan2018' do
1070
1070
  end
1071
1071
  end
1072
1072
 
1073
+ describe 'test attribute "carrier_disclaimer"' do
1074
+ it 'should work' do
1075
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
1076
+ end
1077
+ end
1078
+
1073
1079
  describe 'test attribute "carrier_name"' do
1074
1080
  it 'should work' do
1075
1081
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -1064,6 +1064,12 @@ describe 'ACAPlanPre2018SearchResult' do
1064
1064
  end
1065
1065
  end
1066
1066
 
1067
+ describe 'test attribute "carrier_disclaimer"' do
1068
+ it 'should work' do
1069
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
1070
+ end
1071
+ end
1072
+
1067
1073
  describe 'test attribute "carrier_name"' do
1068
1074
  it 'should work' do
1069
1075
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -1064,6 +1064,12 @@ describe 'ACAPlanPre2018Search' do
1064
1064
  end
1065
1065
  end
1066
1066
 
1067
+ describe 'test attribute "carrier_disclaimer"' do
1068
+ it 'should work' do
1069
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
1070
+ end
1071
+ end
1072
+
1067
1073
  describe 'test attribute "carrier_name"' do
1068
1074
  it 'should work' do
1069
1075
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -1064,6 +1064,12 @@ describe 'ACAPlanPre2018' do
1064
1064
  end
1065
1065
  end
1066
1066
 
1067
+ describe 'test attribute "carrier_disclaimer"' do
1068
+ it 'should work' do
1069
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
1070
+ end
1071
+ end
1072
+
1067
1073
  describe 'test attribute "carrier_name"' do
1068
1074
  it 'should work' do
1069
1075
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -1064,6 +1064,12 @@ describe 'ACAPlanSearch' do
1064
1064
  end
1065
1065
  end
1066
1066
 
1067
+ describe 'test attribute "carrier_disclaimer"' do
1068
+ it 'should work' do
1069
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
1070
+ end
1071
+ end
1072
+
1067
1073
  describe 'test attribute "carrier_name"' do
1068
1074
  it 'should work' do
1069
1075
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -1064,6 +1064,12 @@ describe 'ACAPlan' do
1064
1064
  end
1065
1065
  end
1066
1066
 
1067
+ describe 'test attribute "carrier_disclaimer"' do
1068
+ it 'should work' do
1069
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
1070
+ end
1071
+ end
1072
+
1067
1073
  describe 'test attribute "carrier_name"' do
1068
1074
  it 'should work' do
1069
1075
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -1076,5 +1076,11 @@ describe 'DentalPlanSearchRequest' do
1076
1076
  end
1077
1077
  end
1078
1078
 
1079
+ describe 'test attribute "issuer_vericred_ids"' do
1080
+ it 'should work' do
1081
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
1082
+ end
1083
+ end
1084
+
1079
1085
  end
1080
1086
 
@@ -1046,6 +1046,12 @@ describe 'DentalPlanSearch' do
1046
1046
  end
1047
1047
  end
1048
1048
 
1049
+ describe 'test attribute "carrier_disclaimer"' do
1050
+ it 'should work' do
1051
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
1052
+ end
1053
+ end
1054
+
1049
1055
  describe 'test attribute "id"' do
1050
1056
  it 'should work' do
1051
1057
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -1046,6 +1046,12 @@ describe 'DentalPlan' do
1046
1046
  end
1047
1047
  end
1048
1048
 
1049
+ describe 'test attribute "carrier_disclaimer"' do
1050
+ it 'should work' do
1051
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
1052
+ end
1053
+ end
1054
+
1049
1055
  describe 'test attribute "id"' do
1050
1056
  it 'should work' do
1051
1057
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -1112,5 +1112,11 @@ describe 'MedicalPlanSearchRequest' do
1112
1112
  end
1113
1113
  end
1114
1114
 
1115
+ describe 'test attribute "issuer_vericred_ids"' do
1116
+ it 'should work' do
1117
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
1118
+ end
1119
+ end
1120
+
1115
1121
  end
1116
1122
 
@@ -1028,6 +1028,12 @@ describe 'PlanMedicareBulk' do
1028
1028
  expect(@instance).to be_instance_of(VericredClient::PlanMedicareBulk)
1029
1029
  end
1030
1030
  end
1031
+ describe 'test attribute "carrier_disclaimer"' do
1032
+ it 'should work' do
1033
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
1034
+ end
1035
+ end
1036
+
1031
1037
  describe 'test attribute "formulary_name"' do
1032
1038
  it 'should work' do
1033
1039
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers