Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
21855 amit.gupta 1
package com.spice.profitmandi.web.res;
2
 
25302 tejbeer 3
import java.time.LocalDateTime;
4
 
21855 amit.gupta 5
public class Notification {
25302 tejbeer 6
	private String cid;
7
	private String title;
8
	private String type;
9
	private String message;
10
	private String notification_long_text;
11
	private String url;
12
	private String status;
13
	private boolean seen;
14
	private long created;
15
	private boolean expired;
21855 amit.gupta 16
 
25302 tejbeer 17
	public String getCid() {
18
		return cid;
19
	}
20
 
21
	public void setCid(String cid) {
22
		this.cid = cid;
23
	}
24
 
25
	public String getTitle() {
26
		return title;
27
	}
28
 
29
	public void setTitle(String title) {
30
		this.title = title;
31
	}
32
 
33
	public String getType() {
34
		return type;
35
	}
36
 
37
	public void setType(String type) {
38
		this.type = type;
39
	}
40
 
41
	public String getMessage() {
42
		return message;
43
	}
44
 
45
	public void setMessage(String message) {
46
		this.message = message;
47
	}
48
 
49
	public String getNotification_long_text() {
50
		return notification_long_text;
51
	}
52
 
53
	public void setNotification_long_text(String notification_long_text) {
54
		this.notification_long_text = notification_long_text;
55
	}
56
 
57
	public String getUrl() {
58
		return url;
59
	}
60
 
61
	public void setUrl(String url) {
62
		this.url = url;
63
	}
64
 
65
	public String getStatus() {
66
		return status;
67
	}
68
 
69
	public void setStatus(String status) {
70
		this.status = status;
71
	}
72
 
73
	public boolean isExpired() {
74
		return expired;
75
	}
76
 
77
	public void setExpired(boolean expired) {
78
		this.expired = expired;
79
	}
80
 
81
	public boolean isSeen() {
82
		return seen;
83
	}
84
 
85
	public void setSeen(boolean seen) {
86
		this.seen = seen;
87
	}
88
 
89
	public long getCreated() {
90
		return created;
91
	}
92
 
93
	public void setCreated(long created) {
94
		this.created = created;
95
	}
96
 
97
	@Override
98
	public String toString() {
99
		return "Notification [cid=" + cid + ", title=" + title + ", type=" + type + ", message=" + message
100
				+ ", notification_long_text=" + notification_long_text + ", url=" + url + ", status=" + status
101
				+ ", seen=" + seen + ", created=" + created + ", expired=" + expired + "]";
102
	}
103
 
104
 
105
 
21855 amit.gupta 106
}