Subversion Repositories SmartDukaan

Rev

Rev 9157 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
9269 amit.gupta 1
package in.shop2020.mobileapi.serving.pojos;
9157 amit.gupta 2
 
3
import com.google.gson.annotations.SerializedName;
4
 
5
 
6
public class BannerPojo {
7
	//private long id;
8
	private String label;
9
	private String url;
10
	private long position;
11
 
12
	@SerializedName(value = "banner_url")
13
	private String bannerUrl;
14
 
15
	/*public long getId() {
16
		return id;
17
	}*/
18
	/*public void setId(long id) {
19
		this.id = id;
20
	}*/
21
	public String getLabel() {
22
		return label;
23
	}
24
	public void setLabel(String label) {
25
		this.label = label;
26
	}
27
	public String getUrl() {
28
		return url;
29
	}
30
	public void setUrl(String url) {
31
		this.url = url;
32
	}
33
	public String getBannerUrl() {
34
		return bannerUrl;
35
	}
36
	public void setBannerUrl(String bannerUrl) {
37
		this.bannerUrl = bannerUrl;
38
	}
39
	public long getPosition() {
40
		return position;
41
	}
42
	public void setPosition(long position) {
43
		this.position = position;
44
	}
45
 
46
}