All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.wizzdi.messaging.response.UnreadMessagesSummaryItem Maven / Gradle / Ivy

There is a newer version: 8.0.3
Show newest version
package com.wizzdi.messaging.response;

import com.fasterxml.jackson.annotation.JsonIgnore;
import com.wizzdi.messaging.model.Chat;

public class UnreadMessagesSummaryItem {
    @JsonIgnore
    private String chatId;
    private Chat chat;
    private long count;

    public UnreadMessagesSummaryItem() {
    }

    public UnreadMessagesSummaryItem(String chatId, long count) {
        this.chatId = chatId;
        this.count = count;
    }

    @JsonIgnore
    public String getChatId() {
        return chatId;
    }

    public  T setChatId(String chatId) {
        this.chatId = chatId;
        return (T) this;
    }

    public long getCount() {
        return count;
    }

    public  T setCount(long count) {
        this.count = count;
        return (T) this;
    }

    public Chat getChat() {
        return chat;
    }

    public  T setChat(Chat chat) {
        this.chat = chat;
        return (T) this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy