Parse overtime goals
This commit is contained in:
@@ -13,6 +13,8 @@ public abstract class BaseMatch {
|
||||
protected String teamNameGuest = null;
|
||||
protected Integer goalsHome = null;
|
||||
protected Integer goalsGuest = null;
|
||||
protected Integer goalsOvertimeHome = null;
|
||||
protected Integer goalsOvertimeGuest = null;
|
||||
protected Integer matchday = null;
|
||||
protected String matchDatetime = null;
|
||||
|
||||
@@ -40,6 +42,14 @@ public abstract class BaseMatch {
|
||||
return this.goalsGuest;
|
||||
}
|
||||
|
||||
public Integer getGoalsOvertimeHome() {
|
||||
return this.goalsOvertimeHome;
|
||||
}
|
||||
|
||||
public Integer getGoalsOvertimeGuest() {
|
||||
return this.goalsOvertimeGuest;
|
||||
}
|
||||
|
||||
public String getTeamNameHome() {
|
||||
return this.teamNameHome;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user