Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

package in.shop2020.hotspot.dashbaord.shared.actions;

import com.google.gwt.user.client.rpc.IsSerializable;

public class Alert implements IsSerializable{
        private long alertId;
        private String alertType;
        private long createdAt;
        private String description;
        
        
        
    
    @SuppressWarnings("unused")
        private Alert(){}
    
        public Alert(long alertId, String alertType, long createdAt, String description) {
                super();
                this.alertId = alertId;
                this.alertType = alertType;
                this.createdAt = createdAt;
                this.description = description;
        }

        public long getOrderId() {
                return alertId;
        }

        public String getDescription() {
                return description;
        }

        public long getCreatedAt() {
                return createdAt;
        }

        public String getAlertType() {
                return alertType;
        }
}