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.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/docs/ACAPlan.md +2 -1
- data/docs/ACAPlan2018.md +2 -1
- data/docs/ACAPlan2018Search.md +2 -1
- data/docs/ACAPlan2018SearchResult.md +2 -1
- data/docs/ACAPlanPre2018.md +2 -1
- data/docs/ACAPlanPre2018Search.md +2 -1
- data/docs/ACAPlanPre2018SearchResult.md +1 -0
- data/docs/ACAPlanSearch.md +2 -1
- data/docs/DentalPlan.md +1 -0
- data/docs/DentalPlanSearch.md +1 -0
- data/docs/DentalPlanSearchRequest.md +1 -0
- data/docs/MedicalPlanSearchRequest.md +1 -0
- data/docs/Plan.md +1 -0
- data/docs/PlanMedicare.md +1 -0
- data/docs/PlanMedicareBulk.md +1 -0
- data/docs/VisionPlan.md +1 -0
- data/docs/VisionPlanSearchRequest.md +1 -0
- data/lib/vericred_client/models/aca_plan.rb +13 -3
- data/lib/vericred_client/models/aca_plan2018.rb +13 -3
- data/lib/vericred_client/models/aca_plan2018_search.rb +13 -3
- data/lib/vericred_client/models/aca_plan2018_search_result.rb +13 -3
- data/lib/vericred_client/models/aca_plan_pre2018.rb +13 -3
- data/lib/vericred_client/models/aca_plan_pre2018_search.rb +13 -3
- data/lib/vericred_client/models/aca_plan_pre2018_search_result.rb +11 -1
- data/lib/vericred_client/models/aca_plan_search.rb +13 -3
- data/lib/vericred_client/models/dental_plan.rb +11 -1
- data/lib/vericred_client/models/dental_plan_search.rb +11 -1
- data/lib/vericred_client/models/dental_plan_search_request.rb +16 -4
- data/lib/vericred_client/models/medical_plan_search_request.rb +16 -4
- data/lib/vericred_client/models/plan.rb +11 -1
- data/lib/vericred_client/models/plan_medicare.rb +11 -1
- data/lib/vericred_client/models/plan_medicare_bulk.rb +11 -1
- data/lib/vericred_client/models/vision_plan.rb +11 -1
- data/lib/vericred_client/models/vision_plan_search_request.rb +16 -4
- data/lib/vericred_client/version.rb +1 -1
- data/spec/models/aca_plan2018_search_result_spec.rb +6 -0
- data/spec/models/aca_plan2018_search_spec.rb +6 -0
- data/spec/models/aca_plan2018_spec.rb +6 -0
- data/spec/models/aca_plan_pre2018_search_result_spec.rb +6 -0
- data/spec/models/aca_plan_pre2018_search_spec.rb +6 -0
- data/spec/models/aca_plan_pre2018_spec.rb +6 -0
- data/spec/models/aca_plan_search_spec.rb +6 -0
- data/spec/models/aca_plan_spec.rb +6 -0
- data/spec/models/dental_plan_search_request_spec.rb +6 -0
- data/spec/models/dental_plan_search_spec.rb +6 -0
- data/spec/models/dental_plan_spec.rb +6 -0
- data/spec/models/medical_plan_search_request_spec.rb +6 -0
- data/spec/models/plan_medicare_bulk_spec.rb +6 -0
- data/spec/models/plan_medicare_spec.rb +6 -0
- data/spec/models/plan_spec.rb +6 -0
- data/spec/models/vision_plan_search_request_spec.rb +6 -0
- data/spec/models/vision_plan_spec.rb +6 -0
- metadata +2 -2
@@ -1029,10 +1029,13 @@ module VericredClient
|
|
1029
1029
|
# Link to a location to purchase the plan.
|
1030
1030
|
attr_accessor :buy_link
|
1031
1031
|
|
1032
|
+
# Most recent Disclaimer issued for this Plan
|
1033
|
+
attr_accessor :carrier_disclaimer
|
1034
|
+
|
1032
1035
|
# Name of the insurance carrier
|
1033
1036
|
attr_accessor :carrier_name
|
1034
1037
|
|
1035
|
-
#
|
1038
|
+
# Child Dental benefits string
|
1036
1039
|
attr_accessor :child_dental
|
1037
1040
|
|
1038
1041
|
# Child eye exam benefits summary
|
@@ -1276,6 +1279,7 @@ module VericredClient
|
|
1276
1279
|
:'ambulance' => :'ambulance',
|
1277
1280
|
:'benefits_summary_url' => :'benefits_summary_url',
|
1278
1281
|
:'buy_link' => :'buy_link',
|
1282
|
+
:'carrier_disclaimer' => :'carrier_disclaimer',
|
1279
1283
|
:'carrier_name' => :'carrier_name',
|
1280
1284
|
:'child_dental' => :'child_dental',
|
1281
1285
|
:'child_eye_exam' => :'child_eye_exam',
|
@@ -1367,8 +1371,9 @@ module VericredClient
|
|
1367
1371
|
:'ambulance' => :'String',
|
1368
1372
|
:'benefits_summary_url' => :'String',
|
1369
1373
|
:'buy_link' => :'String',
|
1374
|
+
:'carrier_disclaimer' => :'String',
|
1370
1375
|
:'carrier_name' => :'String',
|
1371
|
-
:'child_dental' => :'
|
1376
|
+
:'child_dental' => :'String',
|
1372
1377
|
:'child_eye_exam' => :'String',
|
1373
1378
|
:'child_eyewear' => :'String',
|
1374
1379
|
:'chiropractic_services' => :'String',
|
@@ -1481,6 +1486,10 @@ module VericredClient
|
|
1481
1486
|
self.buy_link = attributes[:'buy_link']
|
1482
1487
|
end
|
1483
1488
|
|
1489
|
+
if attributes.has_key?(:'carrier_disclaimer')
|
1490
|
+
self.carrier_disclaimer = attributes[:'carrier_disclaimer']
|
1491
|
+
end
|
1492
|
+
|
1484
1493
|
if attributes.has_key?(:'carrier_name')
|
1485
1494
|
self.carrier_name = attributes[:'carrier_name']
|
1486
1495
|
end
|
@@ -1829,6 +1838,7 @@ module VericredClient
|
|
1829
1838
|
ambulance == o.ambulance &&
|
1830
1839
|
benefits_summary_url == o.benefits_summary_url &&
|
1831
1840
|
buy_link == o.buy_link &&
|
1841
|
+
carrier_disclaimer == o.carrier_disclaimer &&
|
1832
1842
|
carrier_name == o.carrier_name &&
|
1833
1843
|
child_dental == o.child_dental &&
|
1834
1844
|
child_eye_exam == o.child_eye_exam &&
|
@@ -1919,7 +1929,7 @@ module VericredClient
|
|
1919
1929
|
# Calculates hash code according to all attributes.
|
1920
1930
|
# @return [Fixnum] Hash code
|
1921
1931
|
def hash
|
1922
|
-
[actuarial_value, adult_dental, age29_rider, ambulance, benefits_summary_url, buy_link, carrier_name, child_dental, child_eye_exam, child_eyewear, chiropractic_services, coinsurance, customer_service_phone_number, diagnostic_test, display_name, dp_rider, drug_formulary_url, durable_medical_equipment, effective_date, embedded_deductible, emergency_room, expiration_date, family_drug_deductible, family_drug_moop, family_medical_deductible, family_medical_moop, fp_rider, gated, generic_drugs, habilitation_services, hios_issuer_id, home_health_care, hospice_service, hsa_eligible, id, identifiers, imaging, imaging_center, imaging_physician, individual_drug_deductible, individual_drug_moop, individual_medical_deductible, individual_medical_moop, inpatient_birth, inpatient_facility, inpatient_mental_health, inpatient_physician, inpatient_substance, lab_test, level, logo_url, mail_order_rx, name, network_ids, network_size, networks, non_preferred_brand_drugs, nonpreferred_generic_drug_share, nonpreferred_specialty_drug_share, off_market, on_market, out_of_network_coverage, outpatient_ambulatory_care_center, outpatient_facility, outpatient_mental_health, outpatient_physician, outpatient_substance, plan_calendar, plan_market, plan_type, postnatal_care, preferred_brand_drugs, prenatal_care, prenatal_postnatal_care, preventative_care, primary_care_physician, rehabilitation_services, service_area_id, skilled_nursing, skilled_nursing_facility_365, source, specialist, specialty_drugs, type, urgent_care].hash
|
1932
|
+
[actuarial_value, adult_dental, age29_rider, ambulance, benefits_summary_url, buy_link, carrier_disclaimer, carrier_name, child_dental, child_eye_exam, child_eyewear, chiropractic_services, coinsurance, customer_service_phone_number, diagnostic_test, display_name, dp_rider, drug_formulary_url, durable_medical_equipment, effective_date, embedded_deductible, emergency_room, expiration_date, family_drug_deductible, family_drug_moop, family_medical_deductible, family_medical_moop, fp_rider, gated, generic_drugs, habilitation_services, hios_issuer_id, home_health_care, hospice_service, hsa_eligible, id, identifiers, imaging, imaging_center, imaging_physician, individual_drug_deductible, individual_drug_moop, individual_medical_deductible, individual_medical_moop, inpatient_birth, inpatient_facility, inpatient_mental_health, inpatient_physician, inpatient_substance, lab_test, level, logo_url, mail_order_rx, name, network_ids, network_size, networks, non_preferred_brand_drugs, nonpreferred_generic_drug_share, nonpreferred_specialty_drug_share, off_market, on_market, out_of_network_coverage, outpatient_ambulatory_care_center, outpatient_facility, outpatient_mental_health, outpatient_physician, outpatient_substance, plan_calendar, plan_market, plan_type, postnatal_care, preferred_brand_drugs, prenatal_care, prenatal_postnatal_care, preventative_care, primary_care_physician, rehabilitation_services, service_area_id, skilled_nursing, skilled_nursing_facility_365, source, specialist, specialty_drugs, type, urgent_care].hash
|
1923
1933
|
end
|
1924
1934
|
|
1925
1935
|
# Builds the object from hash
|
@@ -1029,10 +1029,13 @@ module VericredClient
|
|
1029
1029
|
# Link to a location to purchase the plan.
|
1030
1030
|
attr_accessor :buy_link
|
1031
1031
|
|
1032
|
+
# Most recent Disclaimer issued for this Plan
|
1033
|
+
attr_accessor :carrier_disclaimer
|
1034
|
+
|
1032
1035
|
# Name of the insurance carrier
|
1033
1036
|
attr_accessor :carrier_name
|
1034
1037
|
|
1035
|
-
#
|
1038
|
+
# Child Dental benefits string
|
1036
1039
|
attr_accessor :child_dental
|
1037
1040
|
|
1038
1041
|
# Child eye exam benefits summary
|
@@ -1291,6 +1294,7 @@ module VericredClient
|
|
1291
1294
|
:'ambulance' => :'ambulance',
|
1292
1295
|
:'benefits_summary_url' => :'benefits_summary_url',
|
1293
1296
|
:'buy_link' => :'buy_link',
|
1297
|
+
:'carrier_disclaimer' => :'carrier_disclaimer',
|
1294
1298
|
:'carrier_name' => :'carrier_name',
|
1295
1299
|
:'child_dental' => :'child_dental',
|
1296
1300
|
:'child_eye_exam' => :'child_eye_exam',
|
@@ -1387,8 +1391,9 @@ module VericredClient
|
|
1387
1391
|
:'ambulance' => :'String',
|
1388
1392
|
:'benefits_summary_url' => :'String',
|
1389
1393
|
:'buy_link' => :'String',
|
1394
|
+
:'carrier_disclaimer' => :'String',
|
1390
1395
|
:'carrier_name' => :'String',
|
1391
|
-
:'child_dental' => :'
|
1396
|
+
:'child_dental' => :'String',
|
1392
1397
|
:'child_eye_exam' => :'String',
|
1393
1398
|
:'child_eyewear' => :'String',
|
1394
1399
|
:'chiropractic_services' => :'String',
|
@@ -1506,6 +1511,10 @@ module VericredClient
|
|
1506
1511
|
self.buy_link = attributes[:'buy_link']
|
1507
1512
|
end
|
1508
1513
|
|
1514
|
+
if attributes.has_key?(:'carrier_disclaimer')
|
1515
|
+
self.carrier_disclaimer = attributes[:'carrier_disclaimer']
|
1516
|
+
end
|
1517
|
+
|
1509
1518
|
if attributes.has_key?(:'carrier_name')
|
1510
1519
|
self.carrier_name = attributes[:'carrier_name']
|
1511
1520
|
end
|
@@ -1878,6 +1887,7 @@ module VericredClient
|
|
1878
1887
|
ambulance == o.ambulance &&
|
1879
1888
|
benefits_summary_url == o.benefits_summary_url &&
|
1880
1889
|
buy_link == o.buy_link &&
|
1890
|
+
carrier_disclaimer == o.carrier_disclaimer &&
|
1881
1891
|
carrier_name == o.carrier_name &&
|
1882
1892
|
child_dental == o.child_dental &&
|
1883
1893
|
child_eye_exam == o.child_eye_exam &&
|
@@ -1973,7 +1983,7 @@ module VericredClient
|
|
1973
1983
|
# Calculates hash code according to all attributes.
|
1974
1984
|
# @return [Fixnum] Hash code
|
1975
1985
|
def hash
|
1976
|
-
[actuarial_value, adult_dental, age29_rider, ambulance, benefits_summary_url, buy_link, carrier_name, child_dental, child_eye_exam, child_eyewear, chiropractic_services, coinsurance, customer_service_phone_number, diagnostic_test, display_name, dp_rider, drug_formulary_url, durable_medical_equipment, effective_date, embedded_deductible, emergency_room, expiration_date, family_drug_deductible, family_drug_moop, family_medical_deductible, family_medical_moop, fp_rider, gated, generic_drugs, habilitation_services, hios_issuer_id, home_health_care, hospice_service, hsa_eligible, id, identifiers, imaging, imaging_center, imaging_physician, in_network_ids, individual_drug_deductible, individual_drug_moop, individual_medical_deductible, individual_medical_moop, inpatient_birth, inpatient_facility, inpatient_mental_health, inpatient_physician, inpatient_substance, lab_test, level, logo_url, mail_order_rx, name, network_ids, network_size, networks, non_preferred_brand_drugs, nonpreferred_generic_drug_share, nonpreferred_specialty_drug_share, off_market, on_market, out_of_network_coverage, out_of_network_ids, outpatient_ambulatory_care_center, outpatient_facility, outpatient_mental_health, outpatient_physician, outpatient_substance, plan_calendar, plan_market, plan_type, postnatal_care, preferred_brand_drugs, premium, premium_source, premium_subsidized, prenatal_care, prenatal_postnatal_care, preventative_care, primary_care_physician, rehabilitation_services, service_area_id, skilled_nursing, skilled_nursing_facility_365, source, specialist, specialty_drugs, type, urgent_care].hash
|
1986
|
+
[actuarial_value, adult_dental, age29_rider, ambulance, benefits_summary_url, buy_link, carrier_disclaimer, carrier_name, child_dental, child_eye_exam, child_eyewear, chiropractic_services, coinsurance, customer_service_phone_number, diagnostic_test, display_name, dp_rider, drug_formulary_url, durable_medical_equipment, effective_date, embedded_deductible, emergency_room, expiration_date, family_drug_deductible, family_drug_moop, family_medical_deductible, family_medical_moop, fp_rider, gated, generic_drugs, habilitation_services, hios_issuer_id, home_health_care, hospice_service, hsa_eligible, id, identifiers, imaging, imaging_center, imaging_physician, in_network_ids, individual_drug_deductible, individual_drug_moop, individual_medical_deductible, individual_medical_moop, inpatient_birth, inpatient_facility, inpatient_mental_health, inpatient_physician, inpatient_substance, lab_test, level, logo_url, mail_order_rx, name, network_ids, network_size, networks, non_preferred_brand_drugs, nonpreferred_generic_drug_share, nonpreferred_specialty_drug_share, off_market, on_market, out_of_network_coverage, out_of_network_ids, outpatient_ambulatory_care_center, outpatient_facility, outpatient_mental_health, outpatient_physician, outpatient_substance, plan_calendar, plan_market, plan_type, postnatal_care, preferred_brand_drugs, premium, premium_source, premium_subsidized, prenatal_care, prenatal_postnatal_care, preventative_care, primary_care_physician, rehabilitation_services, service_area_id, skilled_nursing, skilled_nursing_facility_365, source, specialist, specialty_drugs, type, urgent_care].hash
|
1977
1987
|
end
|
1978
1988
|
|
1979
1989
|
# Builds the object from hash
|
@@ -1029,6 +1029,9 @@ module VericredClient
|
|
1029
1029
|
# Link to a location to purchase the plan.
|
1030
1030
|
attr_accessor :buy_link
|
1031
1031
|
|
1032
|
+
# Most recent Disclaimer issued for this Plan
|
1033
|
+
attr_accessor :carrier_disclaimer
|
1034
|
+
|
1032
1035
|
# Name of the insurance carrier
|
1033
1036
|
attr_accessor :carrier_name
|
1034
1037
|
|
@@ -1300,6 +1303,7 @@ module VericredClient
|
|
1300
1303
|
:'ambulance' => :'ambulance',
|
1301
1304
|
:'benefits_summary_url' => :'benefits_summary_url',
|
1302
1305
|
:'buy_link' => :'buy_link',
|
1306
|
+
:'carrier_disclaimer' => :'carrier_disclaimer',
|
1303
1307
|
:'carrier_name' => :'carrier_name',
|
1304
1308
|
:'child_dental' => :'child_dental',
|
1305
1309
|
:'child_eye_exam' => :'child_eye_exam',
|
@@ -1399,6 +1403,7 @@ module VericredClient
|
|
1399
1403
|
:'ambulance' => :'String',
|
1400
1404
|
:'benefits_summary_url' => :'String',
|
1401
1405
|
:'buy_link' => :'String',
|
1406
|
+
:'carrier_disclaimer' => :'String',
|
1402
1407
|
:'carrier_name' => :'String',
|
1403
1408
|
:'child_dental' => :'BOOLEAN',
|
1404
1409
|
:'child_eye_exam' => :'String',
|
@@ -1521,6 +1526,10 @@ module VericredClient
|
|
1521
1526
|
self.buy_link = attributes[:'buy_link']
|
1522
1527
|
end
|
1523
1528
|
|
1529
|
+
if attributes.has_key?(:'carrier_disclaimer')
|
1530
|
+
self.carrier_disclaimer = attributes[:'carrier_disclaimer']
|
1531
|
+
end
|
1532
|
+
|
1524
1533
|
if attributes.has_key?(:'carrier_name')
|
1525
1534
|
self.carrier_name = attributes[:'carrier_name']
|
1526
1535
|
end
|
@@ -1905,6 +1914,7 @@ module VericredClient
|
|
1905
1914
|
ambulance == o.ambulance &&
|
1906
1915
|
benefits_summary_url == o.benefits_summary_url &&
|
1907
1916
|
buy_link == o.buy_link &&
|
1917
|
+
carrier_disclaimer == o.carrier_disclaimer &&
|
1908
1918
|
carrier_name == o.carrier_name &&
|
1909
1919
|
child_dental == o.child_dental &&
|
1910
1920
|
child_eye_exam == o.child_eye_exam &&
|
@@ -2003,7 +2013,7 @@ module VericredClient
|
|
2003
2013
|
# Calculates hash code according to all attributes.
|
2004
2014
|
# @return [Fixnum] Hash code
|
2005
2015
|
def hash
|
2006
|
-
[actuarial_value, adult_dental, age29_rider, ambulance, benefits_summary_url, buy_link, carrier_name, child_dental, child_eye_exam, child_eyewear, chiropractic_services, coinsurance, customer_service_phone_number, dependent_premium, diagnostic_test, display_name, dp_rider, drug_formulary_url, durable_medical_equipment, effective_date, embedded_deductible, emergency_room, employee_premium, expiration_date, family_drug_deductible, family_drug_moop, family_medical_deductible, family_medical_moop, fp_rider, gated, generic_drugs, habilitation_services, hios_issuer_id, home_health_care, hospice_service, hsa_eligible, id, identifiers, imaging, imaging_center, imaging_physician, in_network_ids, individual_drug_deductible, individual_drug_moop, individual_medical_deductible, individual_medical_moop, inpatient_birth, inpatient_facility, inpatient_mental_health, inpatient_physician, inpatient_substance, lab_test, level, logo_url, mail_order_rx, match_percentage, name, network_ids, networks, non_preferred_brand_drugs, nonpreferred_generic_drug_share, nonpreferred_specialty_drug_share, off_market, on_market, out_of_network_coverage, out_of_network_ids, outpatient_ambulatory_care_center, outpatient_facility, outpatient_mental_health, outpatient_physician, outpatient_substance, perfect_match_percentage, plan_calendar, plan_market, plan_type, postnatal_care, preferred_brand_drugs, premium, premium_source, premium_subsidized, prenatal_care, prenatal_postnatal_care, preventative_care, primary_care_physician, rehabilitation_services, service_area_id, skilled_nursing, skilled_nursing_facility_365, source, specialist, specialty_drugs, type, urgent_care].hash
|
2016
|
+
[actuarial_value, adult_dental, age29_rider, ambulance, benefits_summary_url, buy_link, carrier_disclaimer, carrier_name, child_dental, child_eye_exam, child_eyewear, chiropractic_services, coinsurance, customer_service_phone_number, dependent_premium, diagnostic_test, display_name, dp_rider, drug_formulary_url, durable_medical_equipment, effective_date, embedded_deductible, emergency_room, employee_premium, expiration_date, family_drug_deductible, family_drug_moop, family_medical_deductible, family_medical_moop, fp_rider, gated, generic_drugs, habilitation_services, hios_issuer_id, home_health_care, hospice_service, hsa_eligible, id, identifiers, imaging, imaging_center, imaging_physician, in_network_ids, individual_drug_deductible, individual_drug_moop, individual_medical_deductible, individual_medical_moop, inpatient_birth, inpatient_facility, inpatient_mental_health, inpatient_physician, inpatient_substance, lab_test, level, logo_url, mail_order_rx, match_percentage, name, network_ids, networks, non_preferred_brand_drugs, nonpreferred_generic_drug_share, nonpreferred_specialty_drug_share, off_market, on_market, out_of_network_coverage, out_of_network_ids, outpatient_ambulatory_care_center, outpatient_facility, outpatient_mental_health, outpatient_physician, outpatient_substance, perfect_match_percentage, plan_calendar, plan_market, plan_type, postnatal_care, preferred_brand_drugs, premium, premium_source, premium_subsidized, prenatal_care, prenatal_postnatal_care, preventative_care, primary_care_physician, rehabilitation_services, service_area_id, skilled_nursing, skilled_nursing_facility_365, source, specialist, specialty_drugs, type, urgent_care].hash
|
2007
2017
|
end
|
2008
2018
|
|
2009
2019
|
# Builds the object from hash
|
@@ -1029,10 +1029,13 @@ module VericredClient
|
|
1029
1029
|
# Link to a location to purchase the plan.
|
1030
1030
|
attr_accessor :buy_link
|
1031
1031
|
|
1032
|
+
# Most recent Disclaimer issued for this Plan
|
1033
|
+
attr_accessor :carrier_disclaimer
|
1034
|
+
|
1032
1035
|
# Name of the insurance carrier
|
1033
1036
|
attr_accessor :carrier_name
|
1034
1037
|
|
1035
|
-
#
|
1038
|
+
# Child Dental benefits string
|
1036
1039
|
attr_accessor :child_dental
|
1037
1040
|
|
1038
1041
|
# Child eye exam benefits summary
|
@@ -1291,6 +1294,7 @@ module VericredClient
|
|
1291
1294
|
:'ambulance' => :'ambulance',
|
1292
1295
|
:'benefits_summary_url' => :'benefits_summary_url',
|
1293
1296
|
:'buy_link' => :'buy_link',
|
1297
|
+
:'carrier_disclaimer' => :'carrier_disclaimer',
|
1294
1298
|
:'carrier_name' => :'carrier_name',
|
1295
1299
|
:'child_dental' => :'child_dental',
|
1296
1300
|
:'child_eye_exam' => :'child_eye_exam',
|
@@ -1387,8 +1391,9 @@ module VericredClient
|
|
1387
1391
|
:'ambulance' => :'String',
|
1388
1392
|
:'benefits_summary_url' => :'String',
|
1389
1393
|
:'buy_link' => :'String',
|
1394
|
+
:'carrier_disclaimer' => :'String',
|
1390
1395
|
:'carrier_name' => :'String',
|
1391
|
-
:'child_dental' => :'
|
1396
|
+
:'child_dental' => :'String',
|
1392
1397
|
:'child_eye_exam' => :'String',
|
1393
1398
|
:'child_eyewear' => :'String',
|
1394
1399
|
:'chiropractic_services' => :'String',
|
@@ -1506,6 +1511,10 @@ module VericredClient
|
|
1506
1511
|
self.buy_link = attributes[:'buy_link']
|
1507
1512
|
end
|
1508
1513
|
|
1514
|
+
if attributes.has_key?(:'carrier_disclaimer')
|
1515
|
+
self.carrier_disclaimer = attributes[:'carrier_disclaimer']
|
1516
|
+
end
|
1517
|
+
|
1509
1518
|
if attributes.has_key?(:'carrier_name')
|
1510
1519
|
self.carrier_name = attributes[:'carrier_name']
|
1511
1520
|
end
|
@@ -1878,6 +1887,7 @@ module VericredClient
|
|
1878
1887
|
ambulance == o.ambulance &&
|
1879
1888
|
benefits_summary_url == o.benefits_summary_url &&
|
1880
1889
|
buy_link == o.buy_link &&
|
1890
|
+
carrier_disclaimer == o.carrier_disclaimer &&
|
1881
1891
|
carrier_name == o.carrier_name &&
|
1882
1892
|
child_dental == o.child_dental &&
|
1883
1893
|
child_eye_exam == o.child_eye_exam &&
|
@@ -1973,7 +1983,7 @@ module VericredClient
|
|
1973
1983
|
# Calculates hash code according to all attributes.
|
1974
1984
|
# @return [Fixnum] Hash code
|
1975
1985
|
def hash
|
1976
|
-
[actuarial_value, adult_dental, age29_rider, ambulance, benefits_summary_url, buy_link, carrier_name, child_dental, child_eye_exam, child_eyewear, chiropractic_services, coinsurance, customer_service_phone_number, diagnostic_test, display_name, dp_rider, drug_formulary_url, durable_medical_equipment, effective_date, embedded_deductible, emergency_room, expiration_date, family_drug_deductible, family_drug_moop, family_medical_deductible, family_medical_moop, fp_rider, gated, generic_drugs, habilitation_services, hios_issuer_id, home_health_care, hospice_service, hsa_eligible, id, identifiers, imaging, imaging_center, imaging_physician, in_network_ids, individual_drug_deductible, individual_drug_moop, individual_medical_deductible, individual_medical_moop, inpatient_birth, inpatient_facility, inpatient_mental_health, inpatient_physician, inpatient_substance, lab_test, level, logo_url, mail_order_rx, name, network_ids, network_size, networks, non_preferred_brand_drugs, nonpreferred_generic_drug_share, nonpreferred_specialty_drug_share, off_market, on_market, out_of_network_coverage, out_of_network_ids, outpatient_ambulatory_care_center, outpatient_facility, outpatient_mental_health, outpatient_physician, outpatient_substance, plan_calendar, plan_market, plan_type, postnatal_care, preferred_brand_drugs, premium, premium_source, premium_subsidized, prenatal_care, prenatal_postnatal_care, preventative_care, primary_care_physician, rehabilitation_services, service_area_id, skilled_nursing, skilled_nursing_facility_365, source, specialist, specialty_drugs, type, urgent_care].hash
|
1986
|
+
[actuarial_value, adult_dental, age29_rider, ambulance, benefits_summary_url, buy_link, carrier_disclaimer, carrier_name, child_dental, child_eye_exam, child_eyewear, chiropractic_services, coinsurance, customer_service_phone_number, diagnostic_test, display_name, dp_rider, drug_formulary_url, durable_medical_equipment, effective_date, embedded_deductible, emergency_room, expiration_date, family_drug_deductible, family_drug_moop, family_medical_deductible, family_medical_moop, fp_rider, gated, generic_drugs, habilitation_services, hios_issuer_id, home_health_care, hospice_service, hsa_eligible, id, identifiers, imaging, imaging_center, imaging_physician, in_network_ids, individual_drug_deductible, individual_drug_moop, individual_medical_deductible, individual_medical_moop, inpatient_birth, inpatient_facility, inpatient_mental_health, inpatient_physician, inpatient_substance, lab_test, level, logo_url, mail_order_rx, name, network_ids, network_size, networks, non_preferred_brand_drugs, nonpreferred_generic_drug_share, nonpreferred_specialty_drug_share, off_market, on_market, out_of_network_coverage, out_of_network_ids, outpatient_ambulatory_care_center, outpatient_facility, outpatient_mental_health, outpatient_physician, outpatient_substance, plan_calendar, plan_market, plan_type, postnatal_care, preferred_brand_drugs, premium, premium_source, premium_subsidized, prenatal_care, prenatal_postnatal_care, preventative_care, primary_care_physician, rehabilitation_services, service_area_id, skilled_nursing, skilled_nursing_facility_365, source, specialist, specialty_drugs, type, urgent_care].hash
|
1977
1987
|
end
|
1978
1988
|
|
1979
1989
|
# 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 dental 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' => :'DentalPlanBenefits',
|
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
|
@@ -1176,6 +1185,7 @@ module VericredClient
|
|
1176
1185
|
audience == o.audience &&
|
1177
1186
|
benefits == o.benefits &&
|
1178
1187
|
benefits_summary_url == o.benefits_summary_url &&
|
1188
|
+
carrier_disclaimer == o.carrier_disclaimer &&
|
1179
1189
|
id == o.id &&
|
1180
1190
|
identifiers == o.identifiers &&
|
1181
1191
|
issuer_name == o.issuer_name &&
|
@@ -1197,7 +1207,7 @@ module VericredClient
|
|
1197
1207
|
# Calculates hash code according to all attributes.
|
1198
1208
|
# @return [Fixnum] Hash code
|
1199
1209
|
def hash
|
1200
|
-
[audience, benefits, benefits_summary_url, id, identifiers, issuer_name, logo_url, name, network_size, networks, plan_type, source, stand_alone].hash
|
1210
|
+
[audience, benefits, benefits_summary_url, carrier_disclaimer, id, identifiers, issuer_name, logo_url, name, network_size, networks, plan_type, source, stand_alone].hash
|
1201
1211
|
end
|
1202
1212
|
|
1203
1213
|
# 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 dental plan identifier
|
1024
1027
|
attr_accessor :id
|
1025
1028
|
|
@@ -1072,6 +1075,7 @@ module VericredClient
|
|
1072
1075
|
:'audience' => :'audience',
|
1073
1076
|
:'benefits' => :'benefits',
|
1074
1077
|
:'benefits_summary_url' => :'benefits_summary_url',
|
1078
|
+
:'carrier_disclaimer' => :'carrier_disclaimer',
|
1075
1079
|
:'id' => :'id',
|
1076
1080
|
:'identifiers' => :'identifiers',
|
1077
1081
|
:'in_network_ids' => :'in_network_ids',
|
@@ -1096,6 +1100,7 @@ module VericredClient
|
|
1096
1100
|
:'audience' => :'String',
|
1097
1101
|
:'benefits' => :'DentalPlanBenefits',
|
1098
1102
|
:'benefits_summary_url' => :'String',
|
1103
|
+
:'carrier_disclaimer' => :'String',
|
1099
1104
|
:'id' => :'String',
|
1100
1105
|
:'identifiers' => :'Array<AncillaryPlanIdentifier>',
|
1101
1106
|
:'in_network_ids' => :'Array<Integer>',
|
@@ -1134,6 +1139,10 @@ module VericredClient
|
|
1134
1139
|
self.benefits_summary_url = attributes[:'benefits_summary_url']
|
1135
1140
|
end
|
1136
1141
|
|
1142
|
+
if attributes.has_key?(:'carrier_disclaimer')
|
1143
|
+
self.carrier_disclaimer = attributes[:'carrier_disclaimer']
|
1144
|
+
end
|
1145
|
+
|
1137
1146
|
if attributes.has_key?(:'id')
|
1138
1147
|
self.id = attributes[:'id']
|
1139
1148
|
end
|
@@ -1225,6 +1234,7 @@ module VericredClient
|
|
1225
1234
|
audience == o.audience &&
|
1226
1235
|
benefits == o.benefits &&
|
1227
1236
|
benefits_summary_url == o.benefits_summary_url &&
|
1237
|
+
carrier_disclaimer == o.carrier_disclaimer &&
|
1228
1238
|
id == o.id &&
|
1229
1239
|
identifiers == o.identifiers &&
|
1230
1240
|
in_network_ids == o.in_network_ids &&
|
@@ -1251,7 +1261,7 @@ module VericredClient
|
|
1251
1261
|
# Calculates hash code according to all attributes.
|
1252
1262
|
# @return [Fixnum] Hash code
|
1253
1263
|
def hash
|
1254
|
-
[audience, benefits, benefits_summary_url, id, identifiers, in_network_ids, issuer_name, logo_url, name, network_size, networks, out_of_network_ids, plan_type, premium, premium_source, premium_subsidized, source, stand_alone].hash
|
1264
|
+
[audience, benefits, benefits_summary_url, carrier_disclaimer, id, identifiers, in_network_ids, issuer_name, logo_url, name, network_size, networks, out_of_network_ids, plan_type, premium, premium_source, premium_subsidized, source, stand_alone].hash
|
1255
1265
|
end
|
1256
1266
|
|
1257
1267
|
# Builds the object from hash
|
@@ -1035,6 +1035,9 @@ module VericredClient
|
|
1035
1035
|
# 5-digit zip code - this helps determine pricing.
|
1036
1036
|
attr_accessor :zip_code
|
1037
1037
|
|
1038
|
+
# Vericred IDs of the issuers to include in search
|
1039
|
+
attr_accessor :issuer_vericred_ids
|
1040
|
+
|
1038
1041
|
|
1039
1042
|
# Attribute mapping from ruby-style variable name to JSON key.
|
1040
1043
|
def self.attribute_map
|
@@ -1046,7 +1049,8 @@ module VericredClient
|
|
1046
1049
|
:'page' => :'page',
|
1047
1050
|
:'per_page' => :'per_page',
|
1048
1051
|
:'providers' => :'providers',
|
1049
|
-
:'zip_code' => :'zip_code'
|
1052
|
+
:'zip_code' => :'zip_code',
|
1053
|
+
:'issuer_vericred_ids' => :'issuer_vericred_ids'
|
1050
1054
|
}
|
1051
1055
|
end
|
1052
1056
|
|
@@ -1060,7 +1064,8 @@ module VericredClient
|
|
1060
1064
|
:'page' => :'Integer',
|
1061
1065
|
:'per_page' => :'Integer',
|
1062
1066
|
:'providers' => :'Array<RequestPlanFindProvider>',
|
1063
|
-
:'zip_code' => :'String'
|
1067
|
+
:'zip_code' => :'String',
|
1068
|
+
:'issuer_vericred_ids' => :'Array<String>'
|
1064
1069
|
}
|
1065
1070
|
end
|
1066
1071
|
|
@@ -1108,6 +1113,12 @@ module VericredClient
|
|
1108
1113
|
self.zip_code = attributes[:'zip_code']
|
1109
1114
|
end
|
1110
1115
|
|
1116
|
+
if attributes.has_key?(:'issuer_vericred_ids')
|
1117
|
+
if (value = attributes[:'issuer_vericred_ids']).is_a?(Array)
|
1118
|
+
self.issuer_vericred_ids = value
|
1119
|
+
end
|
1120
|
+
end
|
1121
|
+
|
1111
1122
|
end
|
1112
1123
|
|
1113
1124
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -1135,7 +1146,8 @@ module VericredClient
|
|
1135
1146
|
page == o.page &&
|
1136
1147
|
per_page == o.per_page &&
|
1137
1148
|
providers == o.providers &&
|
1138
|
-
zip_code == o.zip_code
|
1149
|
+
zip_code == o.zip_code &&
|
1150
|
+
issuer_vericred_ids == o.issuer_vericred_ids
|
1139
1151
|
end
|
1140
1152
|
|
1141
1153
|
# @see the `==` method
|
@@ -1147,7 +1159,7 @@ module VericredClient
|
|
1147
1159
|
# Calculates hash code according to all attributes.
|
1148
1160
|
# @return [Fixnum] Hash code
|
1149
1161
|
def hash
|
1150
|
-
[applicants, enrollment_date, fips_code, market, page, per_page, providers, zip_code].hash
|
1162
|
+
[applicants, enrollment_date, fips_code, market, page, per_page, providers, zip_code, issuer_vericred_ids].hash
|
1151
1163
|
end
|
1152
1164
|
|
1153
1165
|
# Builds the object from hash
|
@@ -1053,6 +1053,9 @@ module VericredClient
|
|
1053
1053
|
# 5-digit zip code - this helps determine pricing.
|
1054
1054
|
attr_accessor :zip_code
|
1055
1055
|
|
1056
|
+
# Vericred IDs of the issuers to include in search
|
1057
|
+
attr_accessor :issuer_vericred_ids
|
1058
|
+
|
1056
1059
|
|
1057
1060
|
# Attribute mapping from ruby-style variable name to JSON key.
|
1058
1061
|
def self.attribute_map
|
@@ -1070,7 +1073,8 @@ module VericredClient
|
|
1070
1073
|
:'per_page' => :'per_page',
|
1071
1074
|
:'providers' => :'providers',
|
1072
1075
|
:'sort' => :'sort',
|
1073
|
-
:'zip_code' => :'zip_code'
|
1076
|
+
:'zip_code' => :'zip_code',
|
1077
|
+
:'issuer_vericred_ids' => :'issuer_vericred_ids'
|
1074
1078
|
}
|
1075
1079
|
end
|
1076
1080
|
|
@@ -1090,7 +1094,8 @@ module VericredClient
|
|
1090
1094
|
:'per_page' => :'Integer',
|
1091
1095
|
:'providers' => :'Array<RequestPlanFindProvider>',
|
1092
1096
|
:'sort' => :'String',
|
1093
|
-
:'zip_code' => :'String'
|
1097
|
+
:'zip_code' => :'String',
|
1098
|
+
:'issuer_vericred_ids' => :'Array<String>'
|
1094
1099
|
}
|
1095
1100
|
end
|
1096
1101
|
|
@@ -1168,6 +1173,12 @@ module VericredClient
|
|
1168
1173
|
self.zip_code = attributes[:'zip_code']
|
1169
1174
|
end
|
1170
1175
|
|
1176
|
+
if attributes.has_key?(:'issuer_vericred_ids')
|
1177
|
+
if (value = attributes[:'issuer_vericred_ids']).is_a?(Array)
|
1178
|
+
self.issuer_vericred_ids = value
|
1179
|
+
end
|
1180
|
+
end
|
1181
|
+
|
1171
1182
|
end
|
1172
1183
|
|
1173
1184
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -1201,7 +1212,8 @@ module VericredClient
|
|
1201
1212
|
per_page == o.per_page &&
|
1202
1213
|
providers == o.providers &&
|
1203
1214
|
sort == o.sort &&
|
1204
|
-
zip_code == o.zip_code
|
1215
|
+
zip_code == o.zip_code &&
|
1216
|
+
issuer_vericred_ids == o.issuer_vericred_ids
|
1205
1217
|
end
|
1206
1218
|
|
1207
1219
|
# @see the `==` method
|
@@ -1213,7 +1225,7 @@ module VericredClient
|
|
1213
1225
|
# Calculates hash code according to all attributes.
|
1214
1226
|
# @return [Fixnum] Hash code
|
1215
1227
|
def hash
|
1216
|
-
[applicants, drug_packages, enrollment_date, fips_code, household_income, household_size, ids, issuer_qualifications_met, market, page, per_page, providers, sort, zip_code].hash
|
1228
|
+
[applicants, drug_packages, enrollment_date, fips_code, household_income, household_size, ids, issuer_qualifications_met, market, page, per_page, providers, sort, zip_code, issuer_vericred_ids].hash
|
1217
1229
|
end
|
1218
1230
|
|
1219
1231
|
# Builds the object from hash
|