You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
The NCAAB Boxscores class should include a property which exposes the games final scoring summary. This will give end-users the ability to see how many points each team scored in every half.
Describe the solution you'd like
One possible solution would be to create a dictionary with the scoring summary and differentiate between both teams, similar to the following:
In the case of overtime, additional elements can be added as necessary to the scoring summary.
Describe alternatives you've considered
A couple other options would be to create separate properties for the home and away teams, but the scoring summary is generally presented together and feels like a more logical coupling.
Another option is to extend the dictionary with further granularity similar to the following:
This method doesn't feel elegant and the verbosity of the keys isn't entirely necessary. Plus, this becomes more difficult to utilize in scripts at the risk of clarity.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
The NCAAB Boxscores class should include a property which exposes the games final scoring summary. This will give end-users the ability to see how many points each team scored in every half.
Describe the solution you'd like
One possible solution would be to create a dictionary with the scoring summary and differentiate between both teams, similar to the following:
In the case of overtime, additional elements can be added as necessary to the scoring summary.
Describe alternatives you've considered
A couple other options would be to create separate properties for the home and away teams, but the scoring summary is generally presented together and feels like a more logical coupling.
Another option is to extend the dictionary with further granularity similar to the following:
This method doesn't feel elegant and the verbosity of the keys isn't entirely necessary. Plus, this becomes more difficult to utilize in scripts at the risk of clarity.
The text was updated successfully, but these errors were encountered: