Subversion Repositories SmartDukaan

Rev

Rev 9073 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9073 Rev 12974
Line -... Line 1...
-
 
1
 
1
package in.shop2020.serving.model;
2
package in.shop2020.serving.model;
2
 
3
 
-
 
4
import java.util.ArrayList;
3
import java.util.List;
5
import java.util.List;
-
 
6
import javax.annotation.Generated;
-
 
7
import com.google.gson.annotations.Expose;
-
 
8
import org.apache.commons.lang.builder.ToStringBuilder;
4
 
9
 
-
 
10
@Generated("org.jsonschema2pojo")
5
public class OrderItems {
11
public class OrderItems {
6
	int total;
-
 
7
	List<Order> order_items;
-
 
8
	public int getTotal() {
-
 
9
		return total;
-
 
10
	}
-
 
11
	public void setTotal(int total) {
-
 
12
		this.total = total;
-
 
13
	}
-
 
14
	public List<Order> getOrder_items() {
-
 
15
		return order_items;
-
 
16
	}
-
 
17
	public void setOrder_items(List<Order> order_items) {
-
 
18
		this.order_items = order_items;
-
 
19
	}
-
 
20
 
12
 
-
 
13
    @Expose
-
 
14
    private boolean hasMore;
-
 
15
    @Expose
-
 
16
    private List<Order> items = new ArrayList<Order>();
-
 
17
    @Expose
-
 
18
    private String nextPage;
-
 
19
 
-
 
20
    public boolean isHasMore() {
-
 
21
        return hasMore;
-
 
22
    }
-
 
23
 
-
 
24
    public void setHasMore(boolean hasMore) {
-
 
25
        this.hasMore = hasMore;
-
 
26
    }
-
 
27
 
-
 
28
    public List<Order> getItems() {
-
 
29
        return items;
-
 
30
    }
-
 
31
 
-
 
32
    public void setItems(List<Order> items) {
-
 
33
        this.items = items;
-
 
34
    }
-
 
35
 
-
 
36
    public String getNextPage() {
-
 
37
        return nextPage;
-
 
38
    }
-
 
39
 
-
 
40
    public void setNextPage(String nextPage) {
-
 
41
        this.nextPage = nextPage;
-
 
42
    }
-
 
43
 
-
 
44
    @Override
-
 
45
    public String toString() {
-
 
46
        return ToStringBuilder.reflectionToString(this);
-
 
47
    }
-
 
48
 
21
}
49
}
22
50