class AthenaHealth::Client

Public Class Methods

new(production: false, client_id:, secret:, token: nil) click to toggle source
# File lib/athena_health/client.rb, line 3
def initialize(production: false, client_id:, secret:, token: nil)
  @api = AthenaHealth::Connection.new(
    production: production,
    client_id: client_id,
    secret: secret,
    token: token,
  )
end