Remove full text from Paper class

This commit is contained in:
coolneng 2021-01-11 20:10:46 +01:00
parent 7e56aae1a2
commit 3b4d7f1408
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
1 changed files with 0 additions and 5 deletions

View File

@ -27,14 +27,9 @@ class Abstract {
String text; String text;
} }
class Body_Text {
String text;
}
public class Paper { public class Paper {
String paper_id; String paper_id;
Metadata metadata; Metadata metadata;
@SerializedName("abstract") @SerializedName("abstract")
List<Abstract> abstr; List<Abstract> abstr;
List<Body_Text> body_text;
} }