com.volcengine.model.im.IsInBlackListResResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
package com.volcengine.model.im;
import com.alibaba.fastjson.JSON;
import java.util.Map;
/**
* IsInBlackListResResult
*/
@lombok.Data
public final class IsInBlackListResResult {
/**
* 校验结果。key 为 uid,value 为 true:在黑名单中。 value 为 false:不在黑名单中
*/
@com.alibaba.fastjson.annotation.JSONField(name = "IsInBlackListInfos")
private Map isInBlackListInfos;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy