com.volcengine.model.livesaas.request.GetSDKTokenRequest 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.livesaas.request;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
import java.util.List;
import java.util.Map;
@Data
public class GetSDKTokenRequest {
@JSONField(name = "Mode")
Integer Mode;
@JSONField(name = "UserIdStr")
String UserIdStr;
@JSONField(name = "Nickname")
String Nickname;
@JSONField(name = "InviteToken")
String InviteToken;
@JSONField(name = "AvatarUrl")
String AvatarUrl;
@JSONField(name = "ActivityId")
Long ActivityId;
@JSONField(name = "CustomComment")
String CustomComment;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy