beneggett/sportradar-api

View on GitHub
lib/sportradar/api/basketball/plays/three_point_made.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Sportradar
  module Api
    module Basketball
      class ThreePointMade < ShotMade
        def display_type
          '3PT Make'
        end
        def points
          3
        end
      end
    end
  end
end