com.volcengine.model.beans.Room 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.beans;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
@Data
public class Room {
@JSONField(name = "RoomId")
String roomId;
@JSONField(name = "AppId")
String appId;
@JSONField(name = "UserNum")
int userNum;
@JSONField(name = "StreamNum")
int streamNum;
@JSONField(name = "State")
int state;
@JSONField(name = "CreatedAt")
String createdAt;
@JSONField(name = "UpdatedAt")
String updatedAt;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy