com.hiczp.bilibili.api.live.socket.entity.RoomSilentOffEntity 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.JsonElement;
import com.google.gson.annotations.SerializedName;
import java.util.List;
public class RoomSilentOffEntity implements DataEntity {
/**
* cmd : ROOM_SILENT_OFF
* data : []
* roomid : 29434
*/
@SerializedName("cmd")
private String cmd;
@SerializedName("roomid")
private String roomId;
@SerializedName("data")
private List data;
@Override
public String getCmd() {
return cmd;
}
public void setCmd(String cmd) {
this.cmd = cmd;
}
public String getRoomId() {
return roomId;
}
public void setRoomId(String roomId) {
this.roomId = roomId;
}
public List getData() {
return data;
}
public void setData(List data) {
this.data = data;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy