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

io.rong.models.response.GroupBanInfo Maven / Gradle / Ivy

package io.rong.models.response;

import io.rong.util.GsonUtil;

public class GroupBanInfo {
    private String groupId;
    private Integer stat;

    public String getGroupId() {
        return groupId;
    }

    public void setGroupId(String groupId) {
        this.groupId = groupId;
    }

    public Integer getStat() {
        return stat;
    }

    public void setStat(Integer stat) {
        this.stat = stat;
    }

    @Override
    public String toString() {
        return GsonUtil.toJson(this, GroupBanInfo.class);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy