Sha256: 7ed340c5489fa45ab5417c73929cb05a0f2e5a455427f9b819281883a409c749

Contents?: true

Size: 637 Bytes

Versions: 9

Compression:

Stored size: 637 Bytes

Contents

module AthenaHealth
  module Endpoints
    module InsurancePackages
      def top_insurance_packages(practice_id:, params: {})
        response = @api.call(
          endpoint: "#{practice_id}/misc/topinsurancepackages",
          method: :get,
          params: params
        )

        InsurancePackageCollection.new(response)
      end

      def common_insurance_packages(practice_id:, params: {})
        response = @api.call(
          endpoint: "#{practice_id}/misc/commoninsurancepackages",
          method: :get,
          params: params
        )

        InsurancePackageCollection.new(response)
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
athena_health-2.0.4 lib/athena_health/endpoints/insurance_packages.rb
athena_health-2.0.3 lib/athena_health/endpoints/insurance_packages.rb
athena_health-2.0.2 lib/athena_health/endpoints/insurance_packages.rb
athena_health-2.0.1 lib/athena_health/endpoints/insurance_packages.rb
athena_health-2.0.0 lib/athena_health/endpoints/insurance_packages.rb
athena_health-1.0.51 lib/athena_health/endpoints/insurance_packages.rb
athena_health-1.0.50 lib/athena_health/endpoints/insurance_packages.rb
athena_health-1.0.49 lib/athena_health/endpoints/insurance_packages.rb
athena_health-1.0.48 lib/athena_health/endpoints/insurance_packages.rb