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

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

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

import java.util.ArrayList;
import java.util.List;

public class UnreadMessagesSummary {

    private List items=new ArrayList<>();
    private long total;

    public List getItems() {
        return items;
    }

    public  T setItems(List items) {
        this.items = items;
        return (T) this;
    }

    public long getTotal() {
        return total;
    }

    public  T setTotal(long total) {
        this.total = total;
        return (T) this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy