[LIB-8] URL and HTML tag processing, new entities fields
[snooker-score-api.git] / src / main / java / org / hedgecode / snooker / api / Player.java
index 9c6c7ea..49a3e7a 100644 (file)
@@ -43,6 +43,8 @@ public interface Player extends IdEntity {
 
     String shortName();
 
+    String fullName();
+
     String nationality();
 
     String sex();
@@ -53,6 +55,8 @@ public interface Player extends IdEntity {
 
     String twitter();
 
+    String twitterUrl();
+
     boolean surnameFirst();
 
     String license();
@@ -63,6 +67,14 @@ public interface Player extends IdEntity {
 
     String photo();
 
+    PlayerImage image() throws APIException;
+
+    String photoSource();
+
+    int firstSeasonAsPro();
+
+    int lastSeasonAsPro();
+
     String info();
 
 }