TeamScorecard
Represents a scorecard for a team in a golf tournament.
type TeamScorecard {
round: Int
status: ScorecardStatus
position: Int
positionTied: Boolean
roundPosition: Int
roundPositionTied: Boolean
shotsBehindLeader: Int
startOfDayToPar: Int
today: Int
toPar: Int
total: Int
teamPlayerScorecards: [TeamPlayerScorecard]
fineSort: Int
holesToPlay: Int
holesPlayed: Int
roundComplete: Boolean
}
Fields
TeamScorecard.round ● Int scalar
Round number.
TeamScorecard.status ● ScorecardStatus enum
Status of the team scorecard.
TeamScorecard.position ● Int scalar
Position of the team in the tournament.
TeamScorecard.positionTied ● Boolean scalar
Indicates if the position is tied with other teams.
TeamScorecard.roundPosition ● Int scalar
Position of the team in the for the round.
TeamScorecard.roundPositionTied ● Boolean scalar
Indicates if the round position is tied with other teams.
TeamScorecard.shotsBehindLeader ● Int scalar
Number of shots behind the leader.
TeamScorecard.startOfDayToPar ● Int scalar
Score relative to par at the start of the day.
TeamScorecard.today ● Int scalar
Score for the current day.
TeamScorecard.toPar ● Int scalar
Total score relative to par.
TeamScorecard.total ● Int scalar
Total strokes for counting players, null until all team players have completed the round.
TeamScorecard.teamPlayerScorecards ● [TeamPlayerScorecard] list object
List of player scorecards for the team.
TeamScorecard.fineSort ● Int scalar
Fine sort value for determining the order in the leaderboard.
TeamScorecard.holesToPlay ● Int scalar
Number of holes remaining to be played.
TeamScorecard.holesPlayed ● Int scalar
Number of holes played.
TeamScorecard.roundComplete ● Boolean scalar
Indicates if the round is complete.
Member of
LeaderboardTeam object