vericred_client 0.0.7 → 0.0.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +201 -0
- data/README.md +9 -10
- data/docs/DrugsApi.md +7 -9
- data/docs/NetworksApi.md +4 -6
- data/docs/PlansApi.md +4 -72
- data/docs/ProvidersApi.md +7 -20
- data/docs/RequestProvidersSearch.md +1 -3
- data/docs/ZipCountiesApi.md +3 -3
- data/git_push.sh +67 -0
- data/lib/vericred_client/api/drugs_api.rb +17 -11
- data/lib/vericred_client/api/networks_api.rb +18 -12
- data/lib/vericred_client/api/plans_api.rb +15 -141
- data/lib/vericred_client/api/providers_api.rb +16 -32
- data/lib/vericred_client/api/zip_counties_api.rb +14 -4
- data/lib/vericred_client/api_client.rb +13 -3
- data/lib/vericred_client/api_error.rb +13 -3
- data/lib/vericred_client/configuration.rb +130 -0
- data/lib/vericred_client/models/applicant.rb +20 -6
- data/lib/vericred_client/models/base.rb +20 -6
- data/lib/vericred_client/models/carrier.rb +20 -6
- data/lib/vericred_client/models/carrier_subsidiary.rb +20 -6
- data/lib/vericred_client/models/county.rb +20 -6
- data/lib/vericred_client/models/county_bulk.rb +20 -6
- data/lib/vericred_client/models/drug.rb +20 -6
- data/lib/vericred_client/models/drug_coverage.rb +20 -6
- data/lib/vericred_client/models/drug_coverage_response.rb +20 -6
- data/lib/vericred_client/models/drug_package.rb +20 -6
- data/lib/vericred_client/models/drug_search_response.rb +20 -6
- data/lib/vericred_client/models/meta.rb +20 -6
- data/lib/vericred_client/models/network.rb +20 -6
- data/lib/vericred_client/models/network_search_response.rb +20 -6
- data/lib/vericred_client/models/plan.rb +20 -6
- data/lib/vericred_client/models/plan_county.rb +20 -6
- data/lib/vericred_client/models/plan_county_bulk.rb +20 -6
- data/lib/vericred_client/models/plan_search_response.rb +20 -6
- data/lib/vericred_client/models/plan_search_result.rb +20 -6
- data/lib/vericred_client/models/plan_zip_county.rb +20 -6
- data/lib/vericred_client/models/pricing.rb +20 -6
- data/lib/vericred_client/models/provider.rb +20 -6
- data/lib/vericred_client/models/provider_show_response.rb +20 -6
- data/lib/vericred_client/models/providers_search_response.rb +20 -6
- data/lib/vericred_client/models/rating_area.rb +20 -6
- data/lib/vericred_client/models/request_plan_find.rb +20 -6
- data/lib/vericred_client/models/request_plan_find_applicant.rb +20 -6
- data/lib/vericred_client/models/request_plan_find_provider.rb +20 -6
- data/lib/vericred_client/models/request_providers_search.rb +21 -9
- data/lib/vericred_client/models/state.rb +20 -6
- data/lib/vericred_client/models/zip_code.rb +20 -6
- data/lib/vericred_client/models/zip_counties_response.rb +20 -6
- data/lib/vericred_client/models/zip_county.rb +20 -6
- data/lib/vericred_client/models/zip_county_bulk.rb +20 -6
- data/lib/vericred_client/models/zip_county_response.rb +20 -6
- data/lib/vericred_client/version.rb +14 -4
- data/lib/vericred_client.rb +13 -3
- data/spec/api/drugs_api_spec.rb +17 -17
- data/spec/api/networks_api_spec.rb +16 -12
- data/spec/api/plans_api_spec.rb +16 -78
- data/spec/api/providers_api_spec.rb +17 -28
- data/spec/api/zip_counties_api_spec.rb +15 -9
- data/spec/api_client_spec.rb +403 -0
- data/spec/configuration_spec.rb +155 -0
- data/spec/models/applicant_spec.rb +196 -0
- data/spec/models/base_spec.rb +160 -0
- data/spec/models/carrier_spec.rb +172 -0
- data/spec/models/carrier_subsidiary_spec.rb +172 -0
- data/spec/models/county_bulk_spec.rb +172 -0
- data/spec/models/county_spec.rb +196 -0
- data/spec/models/drug_coverage_response_spec.rb +178 -0
- data/spec/models/drug_coverage_spec.rb +190 -0
- data/spec/models/drug_package_spec.rb +166 -0
- data/spec/models/drug_search_response_spec.rb +172 -0
- data/spec/models/drug_spec.rb +178 -0
- data/spec/models/meta_spec.rb +160 -0
- data/spec/models/network_search_response_spec.rb +166 -0
- data/spec/models/network_spec.rb +166 -0
- data/spec/models/plan_county_bulk_spec.rb +166 -0
- data/spec/models/plan_county_spec.rb +166 -0
- data/spec/models/plan_search_response_spec.rb +172 -0
- data/spec/models/plan_search_result_spec.rb +562 -0
- data/spec/models/plan_spec.rb +544 -0
- data/spec/models/plan_zip_county_spec.rb +172 -0
- data/spec/models/pricing_spec.rb +220 -0
- data/spec/models/provider_show_response_spec.rb +160 -0
- data/spec/models/provider_spec.rb +322 -0
- data/spec/models/providers_search_response_spec.rb +172 -0
- data/spec/models/rating_area_spec.rb +166 -0
- data/spec/models/request_plan_find_applicant_spec.rb +160 -0
- data/spec/models/request_plan_find_provider_spec.rb +160 -0
- data/spec/models/request_plan_find_spec.rb +226 -0
- data/spec/models/request_providers_search_spec.rb +202 -0
- data/spec/models/state_spec.rb +202 -0
- data/spec/models/zip_code_spec.rb +166 -0
- data/spec/models/zip_counties_response_spec.rb +178 -0
- data/spec/models/zip_county_bulk_spec.rb +178 -0
- data/spec/models/zip_county_response_spec.rb +178 -0
- data/spec/models/zip_county_spec.rb +172 -0
- data/spec/spec_helper.rb +229 -0
- data/vericred_client.gemspec +131 -0
- metadata +80 -2
@@ -1,7 +1,7 @@
|
|
1
1
|
=begin
|
2
|
-
Vericred API
|
2
|
+
#Vericred API
|
3
3
|
|
4
|
-
Vericred's API allows you to search for Health Plans that a specific doctor
|
4
|
+
#Vericred's API allows you to search for Health Plans that a specific doctor
|
5
5
|
accepts.
|
6
6
|
|
7
7
|
## Getting Started
|
@@ -37,7 +37,6 @@ namely `Total`, `Per-Page`, `Link`, and `Page` as described in [RFC-5988](https:
|
|
37
37
|
|
38
38
|
For example, to display 5 results per page and view the second page of a
|
39
39
|
`GET` to `/networks`, your final request would be `GET /networks?....page=2&per_page=5`.
|
40
|
-
```
|
41
40
|
|
42
41
|
## Sideloading
|
43
42
|
|
@@ -115,12 +114,24 @@ OpenAPI spec version: 1.0.0
|
|
115
114
|
|
116
115
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
117
116
|
|
117
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
118
|
+
you may not use this file except in compliance with the License.
|
119
|
+
You may obtain a copy of the License at
|
120
|
+
|
121
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
122
|
+
|
123
|
+
Unless required by applicable law or agreed to in writing, software
|
124
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
125
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
126
|
+
See the License for the specific language governing permissions and
|
127
|
+
limitations under the License.
|
118
128
|
|
119
129
|
=end
|
120
130
|
|
121
131
|
require 'date'
|
122
132
|
|
123
133
|
module VericredClient
|
134
|
+
|
124
135
|
class PlanCounty
|
125
136
|
# Foreign key to plan
|
126
137
|
attr_accessor :plan_id
|
@@ -128,6 +139,7 @@ module VericredClient
|
|
128
139
|
# Foreign key to county
|
129
140
|
attr_accessor :county_id
|
130
141
|
|
142
|
+
|
131
143
|
# Attribute mapping from ruby-style variable name to JSON key.
|
132
144
|
def self.attribute_map
|
133
145
|
{
|
@@ -172,10 +184,11 @@ module VericredClient
|
|
172
184
|
# Check to see if the all the properties in the model are valid
|
173
185
|
# @return true if the model is valid
|
174
186
|
def valid?
|
187
|
+
return true
|
175
188
|
end
|
176
189
|
|
177
190
|
# Checks equality by comparing each attribute.
|
178
|
-
# @param [Object] Object to be compared
|
191
|
+
# @param [Object] Object to be compared
|
179
192
|
def ==(o)
|
180
193
|
return true if self.equal?(o)
|
181
194
|
self.class == o.class &&
|
@@ -184,7 +197,7 @@ module VericredClient
|
|
184
197
|
end
|
185
198
|
|
186
199
|
# @see the `==` method
|
187
|
-
# @param [Object] Object to be compared
|
200
|
+
# @param [Object] Object to be compared
|
188
201
|
def eql?(o)
|
189
202
|
self == o
|
190
203
|
end
|
@@ -283,7 +296,7 @@ module VericredClient
|
|
283
296
|
|
284
297
|
# Outputs non-array value in the form of hash
|
285
298
|
# For object, use to_hash. Otherwise, just return the value
|
286
|
-
# @param [Object] value Any valid value
|
299
|
+
# @param [Object] value Any valid value
|
287
300
|
# @return [Hash] Returns the value in the form of hash
|
288
301
|
def _to_hash(value)
|
289
302
|
if value.is_a?(Array)
|
@@ -300,4 +313,5 @@ module VericredClient
|
|
300
313
|
end
|
301
314
|
|
302
315
|
end
|
316
|
+
|
303
317
|
end
|
@@ -1,7 +1,7 @@
|
|
1
1
|
=begin
|
2
|
-
Vericred API
|
2
|
+
#Vericred API
|
3
3
|
|
4
|
-
Vericred's API allows you to search for Health Plans that a specific doctor
|
4
|
+
#Vericred's API allows you to search for Health Plans that a specific doctor
|
5
5
|
accepts.
|
6
6
|
|
7
7
|
## Getting Started
|
@@ -37,7 +37,6 @@ namely `Total`, `Per-Page`, `Link`, and `Page` as described in [RFC-5988](https:
|
|
37
37
|
|
38
38
|
For example, to display 5 results per page and view the second page of a
|
39
39
|
`GET` to `/networks`, your final request would be `GET /networks?....page=2&per_page=5`.
|
40
|
-
```
|
41
40
|
|
42
41
|
## Sideloading
|
43
42
|
|
@@ -115,12 +114,24 @@ OpenAPI spec version: 1.0.0
|
|
115
114
|
|
116
115
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
117
116
|
|
117
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
118
|
+
you may not use this file except in compliance with the License.
|
119
|
+
You may obtain a copy of the License at
|
120
|
+
|
121
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
122
|
+
|
123
|
+
Unless required by applicable law or agreed to in writing, software
|
124
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
125
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
126
|
+
See the License for the specific language governing permissions and
|
127
|
+
limitations under the License.
|
118
128
|
|
119
129
|
=end
|
120
130
|
|
121
131
|
require 'date'
|
122
132
|
|
123
133
|
module VericredClient
|
134
|
+
|
124
135
|
class PlanCountyBulk
|
125
136
|
# Foreign key to plan
|
126
137
|
attr_accessor :plan_id
|
@@ -128,6 +139,7 @@ module VericredClient
|
|
128
139
|
# Foreign key to county
|
129
140
|
attr_accessor :county_id
|
130
141
|
|
142
|
+
|
131
143
|
# Attribute mapping from ruby-style variable name to JSON key.
|
132
144
|
def self.attribute_map
|
133
145
|
{
|
@@ -172,10 +184,11 @@ module VericredClient
|
|
172
184
|
# Check to see if the all the properties in the model are valid
|
173
185
|
# @return true if the model is valid
|
174
186
|
def valid?
|
187
|
+
return true
|
175
188
|
end
|
176
189
|
|
177
190
|
# Checks equality by comparing each attribute.
|
178
|
-
# @param [Object] Object to be compared
|
191
|
+
# @param [Object] Object to be compared
|
179
192
|
def ==(o)
|
180
193
|
return true if self.equal?(o)
|
181
194
|
self.class == o.class &&
|
@@ -184,7 +197,7 @@ module VericredClient
|
|
184
197
|
end
|
185
198
|
|
186
199
|
# @see the `==` method
|
187
|
-
# @param [Object] Object to be compared
|
200
|
+
# @param [Object] Object to be compared
|
188
201
|
def eql?(o)
|
189
202
|
self == o
|
190
203
|
end
|
@@ -283,7 +296,7 @@ module VericredClient
|
|
283
296
|
|
284
297
|
# Outputs non-array value in the form of hash
|
285
298
|
# For object, use to_hash. Otherwise, just return the value
|
286
|
-
# @param [Object] value Any valid value
|
299
|
+
# @param [Object] value Any valid value
|
287
300
|
# @return [Hash] Returns the value in the form of hash
|
288
301
|
def _to_hash(value)
|
289
302
|
if value.is_a?(Array)
|
@@ -300,4 +313,5 @@ module VericredClient
|
|
300
313
|
end
|
301
314
|
|
302
315
|
end
|
316
|
+
|
303
317
|
end
|
@@ -1,7 +1,7 @@
|
|
1
1
|
=begin
|
2
|
-
Vericred API
|
2
|
+
#Vericred API
|
3
3
|
|
4
|
-
Vericred's API allows you to search for Health Plans that a specific doctor
|
4
|
+
#Vericred's API allows you to search for Health Plans that a specific doctor
|
5
5
|
accepts.
|
6
6
|
|
7
7
|
## Getting Started
|
@@ -37,7 +37,6 @@ namely `Total`, `Per-Page`, `Link`, and `Page` as described in [RFC-5988](https:
|
|
37
37
|
|
38
38
|
For example, to display 5 results per page and view the second page of a
|
39
39
|
`GET` to `/networks`, your final request would be `GET /networks?....page=2&per_page=5`.
|
40
|
-
```
|
41
40
|
|
42
41
|
## Sideloading
|
43
42
|
|
@@ -115,12 +114,24 @@ OpenAPI spec version: 1.0.0
|
|
115
114
|
|
116
115
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
117
116
|
|
117
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
118
|
+
you may not use this file except in compliance with the License.
|
119
|
+
You may obtain a copy of the License at
|
120
|
+
|
121
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
122
|
+
|
123
|
+
Unless required by applicable law or agreed to in writing, software
|
124
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
125
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
126
|
+
See the License for the specific language governing permissions and
|
127
|
+
limitations under the License.
|
118
128
|
|
119
129
|
=end
|
120
130
|
|
121
131
|
require 'date'
|
122
132
|
|
123
133
|
module VericredClient
|
134
|
+
|
124
135
|
class PlanSearchResponse
|
125
136
|
# Metadata for query
|
126
137
|
attr_accessor :meta
|
@@ -131,6 +142,7 @@ module VericredClient
|
|
131
142
|
# null
|
132
143
|
attr_accessor :coverages
|
133
144
|
|
145
|
+
|
134
146
|
# Attribute mapping from ruby-style variable name to JSON key.
|
135
147
|
def self.attribute_map
|
136
148
|
{
|
@@ -185,10 +197,11 @@ module VericredClient
|
|
185
197
|
# Check to see if the all the properties in the model are valid
|
186
198
|
# @return true if the model is valid
|
187
199
|
def valid?
|
200
|
+
return true
|
188
201
|
end
|
189
202
|
|
190
203
|
# Checks equality by comparing each attribute.
|
191
|
-
# @param [Object] Object to be compared
|
204
|
+
# @param [Object] Object to be compared
|
192
205
|
def ==(o)
|
193
206
|
return true if self.equal?(o)
|
194
207
|
self.class == o.class &&
|
@@ -198,7 +211,7 @@ module VericredClient
|
|
198
211
|
end
|
199
212
|
|
200
213
|
# @see the `==` method
|
201
|
-
# @param [Object] Object to be compared
|
214
|
+
# @param [Object] Object to be compared
|
202
215
|
def eql?(o)
|
203
216
|
self == o
|
204
217
|
end
|
@@ -297,7 +310,7 @@ module VericredClient
|
|
297
310
|
|
298
311
|
# Outputs non-array value in the form of hash
|
299
312
|
# For object, use to_hash. Otherwise, just return the value
|
300
|
-
# @param [Object] value Any valid value
|
313
|
+
# @param [Object] value Any valid value
|
301
314
|
# @return [Hash] Returns the value in the form of hash
|
302
315
|
def _to_hash(value)
|
303
316
|
if value.is_a?(Array)
|
@@ -314,4 +327,5 @@ module VericredClient
|
|
314
327
|
end
|
315
328
|
|
316
329
|
end
|
330
|
+
|
317
331
|
end
|
@@ -1,7 +1,7 @@
|
|
1
1
|
=begin
|
2
|
-
Vericred API
|
2
|
+
#Vericred API
|
3
3
|
|
4
|
-
Vericred's API allows you to search for Health Plans that a specific doctor
|
4
|
+
#Vericred's API allows you to search for Health Plans that a specific doctor
|
5
5
|
accepts.
|
6
6
|
|
7
7
|
## Getting Started
|
@@ -37,7 +37,6 @@ namely `Total`, `Per-Page`, `Link`, and `Page` as described in [RFC-5988](https:
|
|
37
37
|
|
38
38
|
For example, to display 5 results per page and view the second page of a
|
39
39
|
`GET` to `/networks`, your final request would be `GET /networks?....page=2&per_page=5`.
|
40
|
-
```
|
41
40
|
|
42
41
|
## Sideloading
|
43
42
|
|
@@ -115,12 +114,24 @@ OpenAPI spec version: 1.0.0
|
|
115
114
|
|
116
115
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
117
116
|
|
117
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
118
|
+
you may not use this file except in compliance with the License.
|
119
|
+
You may obtain a copy of the License at
|
120
|
+
|
121
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
122
|
+
|
123
|
+
Unless required by applicable law or agreed to in writing, software
|
124
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
125
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
126
|
+
See the License for the specific language governing permissions and
|
127
|
+
limitations under the License.
|
118
128
|
|
119
129
|
=end
|
120
130
|
|
121
131
|
require 'date'
|
122
132
|
|
123
133
|
module VericredClient
|
134
|
+
|
124
135
|
class PlanSearchResult
|
125
136
|
# Does the plan provide dental coverage for adults?
|
126
137
|
attr_accessor :adult_dental
|
@@ -326,6 +337,7 @@ module VericredClient
|
|
326
337
|
# Cumulative premium amount for dependents
|
327
338
|
attr_accessor :dependent_premium
|
328
339
|
|
340
|
+
|
329
341
|
# Attribute mapping from ruby-style variable name to JSON key.
|
330
342
|
def self.attribute_map
|
331
343
|
{
|
@@ -770,10 +782,11 @@ module VericredClient
|
|
770
782
|
# Check to see if the all the properties in the model are valid
|
771
783
|
# @return true if the model is valid
|
772
784
|
def valid?
|
785
|
+
return true
|
773
786
|
end
|
774
787
|
|
775
788
|
# Checks equality by comparing each attribute.
|
776
|
-
# @param [Object] Object to be compared
|
789
|
+
# @param [Object] Object to be compared
|
777
790
|
def ==(o)
|
778
791
|
return true if self.equal?(o)
|
779
792
|
self.class == o.class &&
|
@@ -848,7 +861,7 @@ module VericredClient
|
|
848
861
|
end
|
849
862
|
|
850
863
|
# @see the `==` method
|
851
|
-
# @param [Object] Object to be compared
|
864
|
+
# @param [Object] Object to be compared
|
852
865
|
def eql?(o)
|
853
866
|
self == o
|
854
867
|
end
|
@@ -947,7 +960,7 @@ module VericredClient
|
|
947
960
|
|
948
961
|
# Outputs non-array value in the form of hash
|
949
962
|
# For object, use to_hash. Otherwise, just return the value
|
950
|
-
# @param [Object] value Any valid value
|
963
|
+
# @param [Object] value Any valid value
|
951
964
|
# @return [Hash] Returns the value in the form of hash
|
952
965
|
def _to_hash(value)
|
953
966
|
if value.is_a?(Array)
|
@@ -964,4 +977,5 @@ module VericredClient
|
|
964
977
|
end
|
965
978
|
|
966
979
|
end
|
980
|
+
|
967
981
|
end
|
@@ -1,7 +1,7 @@
|
|
1
1
|
=begin
|
2
|
-
Vericred API
|
2
|
+
#Vericred API
|
3
3
|
|
4
|
-
Vericred's API allows you to search for Health Plans that a specific doctor
|
4
|
+
#Vericred's API allows you to search for Health Plans that a specific doctor
|
5
5
|
accepts.
|
6
6
|
|
7
7
|
## Getting Started
|
@@ -37,7 +37,6 @@ namely `Total`, `Per-Page`, `Link`, and `Page` as described in [RFC-5988](https:
|
|
37
37
|
|
38
38
|
For example, to display 5 results per page and view the second page of a
|
39
39
|
`GET` to `/networks`, your final request would be `GET /networks?....page=2&per_page=5`.
|
40
|
-
```
|
41
40
|
|
42
41
|
## Sideloading
|
43
42
|
|
@@ -115,12 +114,24 @@ OpenAPI spec version: 1.0.0
|
|
115
114
|
|
116
115
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
117
116
|
|
117
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
118
|
+
you may not use this file except in compliance with the License.
|
119
|
+
You may obtain a copy of the License at
|
120
|
+
|
121
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
122
|
+
|
123
|
+
Unless required by applicable law or agreed to in writing, software
|
124
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
125
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
126
|
+
See the License for the specific language governing permissions and
|
127
|
+
limitations under the License.
|
118
128
|
|
119
129
|
=end
|
120
130
|
|
121
131
|
require 'date'
|
122
132
|
|
123
133
|
module VericredClient
|
134
|
+
|
124
135
|
class PlanZipCounty
|
125
136
|
# Foreign key to plan
|
126
137
|
attr_accessor :plan_id
|
@@ -131,6 +142,7 @@ module VericredClient
|
|
131
142
|
# Foreign key to zip code
|
132
143
|
attr_accessor :zip_code_id
|
133
144
|
|
145
|
+
|
134
146
|
# Attribute mapping from ruby-style variable name to JSON key.
|
135
147
|
def self.attribute_map
|
136
148
|
{
|
@@ -181,10 +193,11 @@ module VericredClient
|
|
181
193
|
# Check to see if the all the properties in the model are valid
|
182
194
|
# @return true if the model is valid
|
183
195
|
def valid?
|
196
|
+
return true
|
184
197
|
end
|
185
198
|
|
186
199
|
# Checks equality by comparing each attribute.
|
187
|
-
# @param [Object] Object to be compared
|
200
|
+
# @param [Object] Object to be compared
|
188
201
|
def ==(o)
|
189
202
|
return true if self.equal?(o)
|
190
203
|
self.class == o.class &&
|
@@ -194,7 +207,7 @@ module VericredClient
|
|
194
207
|
end
|
195
208
|
|
196
209
|
# @see the `==` method
|
197
|
-
# @param [Object] Object to be compared
|
210
|
+
# @param [Object] Object to be compared
|
198
211
|
def eql?(o)
|
199
212
|
self == o
|
200
213
|
end
|
@@ -293,7 +306,7 @@ module VericredClient
|
|
293
306
|
|
294
307
|
# Outputs non-array value in the form of hash
|
295
308
|
# For object, use to_hash. Otherwise, just return the value
|
296
|
-
# @param [Object] value Any valid value
|
309
|
+
# @param [Object] value Any valid value
|
297
310
|
# @return [Hash] Returns the value in the form of hash
|
298
311
|
def _to_hash(value)
|
299
312
|
if value.is_a?(Array)
|
@@ -310,4 +323,5 @@ module VericredClient
|
|
310
323
|
end
|
311
324
|
|
312
325
|
end
|
326
|
+
|
313
327
|
end
|
@@ -1,7 +1,7 @@
|
|
1
1
|
=begin
|
2
|
-
Vericred API
|
2
|
+
#Vericred API
|
3
3
|
|
4
|
-
Vericred's API allows you to search for Health Plans that a specific doctor
|
4
|
+
#Vericred's API allows you to search for Health Plans that a specific doctor
|
5
5
|
accepts.
|
6
6
|
|
7
7
|
## Getting Started
|
@@ -37,7 +37,6 @@ namely `Total`, `Per-Page`, `Link`, and `Page` as described in [RFC-5988](https:
|
|
37
37
|
|
38
38
|
For example, to display 5 results per page and view the second page of a
|
39
39
|
`GET` to `/networks`, your final request would be `GET /networks?....page=2&per_page=5`.
|
40
|
-
```
|
41
40
|
|
42
41
|
## Sideloading
|
43
42
|
|
@@ -115,12 +114,24 @@ OpenAPI spec version: 1.0.0
|
|
115
114
|
|
116
115
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
117
116
|
|
117
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
118
|
+
you may not use this file except in compliance with the License.
|
119
|
+
You may obtain a copy of the License at
|
120
|
+
|
121
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
122
|
+
|
123
|
+
Unless required by applicable law or agreed to in writing, software
|
124
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
125
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
126
|
+
See the License for the specific language governing permissions and
|
127
|
+
limitations under the License.
|
118
128
|
|
119
129
|
=end
|
120
130
|
|
121
131
|
require 'date'
|
122
132
|
|
123
133
|
module VericredClient
|
134
|
+
|
124
135
|
class Pricing
|
125
136
|
# Age of applicant
|
126
137
|
attr_accessor :age
|
@@ -155,6 +166,7 @@ module VericredClient
|
|
155
166
|
# Foreign key to rating areas
|
156
167
|
attr_accessor :rating_area_id
|
157
168
|
|
169
|
+
|
158
170
|
# Attribute mapping from ruby-style variable name to JSON key.
|
159
171
|
def self.attribute_map
|
160
172
|
{
|
@@ -253,10 +265,11 @@ module VericredClient
|
|
253
265
|
# Check to see if the all the properties in the model are valid
|
254
266
|
# @return true if the model is valid
|
255
267
|
def valid?
|
268
|
+
return true
|
256
269
|
end
|
257
270
|
|
258
271
|
# Checks equality by comparing each attribute.
|
259
|
-
# @param [Object] Object to be compared
|
272
|
+
# @param [Object] Object to be compared
|
260
273
|
def ==(o)
|
261
274
|
return true if self.equal?(o)
|
262
275
|
self.class == o.class &&
|
@@ -274,7 +287,7 @@ module VericredClient
|
|
274
287
|
end
|
275
288
|
|
276
289
|
# @see the `==` method
|
277
|
-
# @param [Object] Object to be compared
|
290
|
+
# @param [Object] Object to be compared
|
278
291
|
def eql?(o)
|
279
292
|
self == o
|
280
293
|
end
|
@@ -373,7 +386,7 @@ module VericredClient
|
|
373
386
|
|
374
387
|
# Outputs non-array value in the form of hash
|
375
388
|
# For object, use to_hash. Otherwise, just return the value
|
376
|
-
# @param [Object] value Any valid value
|
389
|
+
# @param [Object] value Any valid value
|
377
390
|
# @return [Hash] Returns the value in the form of hash
|
378
391
|
def _to_hash(value)
|
379
392
|
if value.is_a?(Array)
|
@@ -390,4 +403,5 @@ module VericredClient
|
|
390
403
|
end
|
391
404
|
|
392
405
|
end
|
406
|
+
|
393
407
|
end
|