module ChangeHealthcare::Eligibility::SwaggerClient

This module contains an auto-generated client based on swagger docs. Unfortunately Change Healthcare chose some horrific names for their models, so this is more than a little gross to actuall use.

Sorry!

Constants

VERSION

Public Class Methods

configure() { |default| ... } click to toggle source

Customize default settings for the SDK using block.

SwaggerClient.configure do |config|
  config.username = "xxx"
  config.password = "xxx"
end

If no block given, return the default Configuration object.

# File lib/change_healthcare/eligibility/swagger_client.rb, line 71
def configure
  if block_given?
    yield(Configuration.default)
  else
    Configuration.default
  end
end