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

com.hiczp.bilibili.api.live.socket.entity.ChangeRoomInfoEntity Maven / Gradle / Ivy

There is a newer version: 0.2.0
Show newest version
package com.hiczp.bilibili.api.live.socket.entity;

import com.google.gson.annotations.SerializedName;

public class ChangeRoomInfoEntity implements DataEntity {
    /**
     * cmd : CHANGE_ROOM_INFO
     * background : http://static.hdslb.com/live-static/images/bg/4.jpg
     */

    @SerializedName("cmd")
    private String cmd;
    @SerializedName("background")
    private String background;

    @Override
    public String getCmd() {
        return cmd;
    }

    public void setCmd(String cmd) {
        this.cmd = cmd;
    }

    public String getBackground() {
        return background;
    }

    public void setBackground(String background) {
        this.background = background;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy