Project

General

Profile

1

    
2
package eu.dnetlib.data.collector.plugins.datacite.schema;
3

    
4
import java.util.List;
5
import com.google.gson.annotations.Expose;
6
import com.google.gson.annotations.SerializedName;
7

    
8
public class DataciteSchema {
9

    
10
    @SerializedName("counter")
11
    @Expose
12
    private Integer counter;
13
    @SerializedName("result")
14
    @Expose
15
    private List<Result> result = null;
16
    @SerializedName("scroll_id")
17
    @Expose
18
    private String scrollId;
19
    @SerializedName("total")
20
    @Expose
21
    private Integer total;
22

    
23
    public Integer getCounter() {
24
        return counter;
25
    }
26

    
27
    public void setCounter(Integer counter) {
28
        this.counter = counter;
29
    }
30

    
31
    public List<Result> getResult() {
32
        return result;
33
    }
34

    
35
    public void setResult(List<Result> result) {
36
        this.result = result;
37
    }
38

    
39
    public String getScrollId() {
40
        return scrollId;
41
    }
42

    
43
    public void setScrollId(String scrollId) {
44
        this.scrollId = scrollId;
45
    }
46

    
47
    public Integer getTotal() {
48
        return total;
49
    }
50

    
51
    public void setTotal(Integer total) {
52
        this.total = total;
53
    }
54

    
55
}
(1-1/2)