|
@@ -24,6 +24,7 @@ public class TrackingBody {
|
|
|
private String duration;
|
|
|
private String endTime;
|
|
|
private String language;
|
|
|
+ private String type;
|
|
|
|
|
|
public String getAppId() {
|
|
|
return appId;
|
|
@@ -184,4 +185,12 @@ public class TrackingBody {
|
|
|
public void setLanguage(String language) {
|
|
|
this.language = language;
|
|
|
}
|
|
|
+
|
|
|
+ public String getType() {
|
|
|
+ return type;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setType(String type) {
|
|
|
+ this.type = type;
|
|
|
+ }
|
|
|
}
|