Rev 21855 | Blame | Last modification | View Log | RSS feed
package com.spice.profitmandi.web.res;import java.time.LocalDateTime;public class Notification {private String cid;private String title;private String type;private String message;private String notification_long_text;private String url;private String status;private boolean seen;private long created;private boolean expired;public String getCid() {return cid;}public void setCid(String cid) {this.cid = cid;}public String getTitle() {return title;}public void setTitle(String title) {this.title = title;}public String getType() {return type;}public void setType(String type) {this.type = type;}public String getMessage() {return message;}public void setMessage(String message) {this.message = message;}public String getNotification_long_text() {return notification_long_text;}public void setNotification_long_text(String notification_long_text) {this.notification_long_text = notification_long_text;}public String getUrl() {return url;}public void setUrl(String url) {this.url = url;}public String getStatus() {return status;}public void setStatus(String status) {this.status = status;}public boolean isExpired() {return expired;}public void setExpired(boolean expired) {this.expired = expired;}public boolean isSeen() {return seen;}public void setSeen(boolean seen) {this.seen = seen;}public long getCreated() {return created;}public void setCreated(long created) {this.created = created;}@Overridepublic String toString() {return "Notification [cid=" + cid + ", title=" + title + ", type=" + type + ", message=" + message+ ", notification_long_text=" + notification_long_text + ", url=" + url + ", status=" + status+ ", seen=" + seen + ", created=" + created + ", expired=" + expired + "]";}}