class Eligible::Coverage
Public Class Methods
batch_medicare_post(params, api_key = nil)
click to toggle source
# File lib/eligible/coverage.rb, line 15 def self.batch_medicare_post(params, api_key = nil) send_request(:post, '/medicare/coverage/batch.json', api_key, params) end
cost_estimate(params, api_key = nil)
click to toggle source
# File lib/eligible/coverage.rb, line 11 def self.cost_estimate(params, api_key = nil) send_request(:get, '/coverage/cost_estimates.json', api_key, params) end
get_uri()
click to toggle source
# File lib/eligible/coverage.rb, line 3 def self.get_uri return '/coverage/all.json' end
post_uri()
click to toggle source
# File lib/eligible/coverage.rb, line 7 def self.post_uri return '/coverage/all/batch.json' end