com.hiczp.bilibili.api.live.socket.entity.RoomShieldEntity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bilibili-api Show documentation
Show all versions of bilibili-api Show documentation
Bilibili Android client API library for Kotlin
package com.hiczp.bilibili.api.live.socket.entity;
import com.google.gson.annotations.SerializedName;
import java.util.List;
public class RoomShieldEntity implements DataEntity {
/**
* cmd : ROOM_SHIELD
* type : 1
* user : []
* keyword : ["暗号","摄像头","色相头"]
* roomid : 505447
*/
@SerializedName("cmd")
private String cmd;
@SerializedName("type")
private int type;
@SerializedName("roomid")
private long roomId;
@SerializedName("user")
private List user;
@SerializedName("keyword")
private List keyword;
@Override
public String getCmd() {
return cmd;
}
public void setCmd(String cmd) {
this.cmd = cmd;
}
public int getType() {
return type;
}
public void setType(int type) {
this.type = type;
}
public long getRoomId() {
return roomId;
}
public void setRoomId(long roomId) {
this.roomId = roomId;
}
public List getUser() {
return user;
}
public void setUser(List user) {
this.user = user;
}
public List getKeyword() {
return keyword;
}
public void setKeyword(List keyword) {
this.keyword = keyword;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy