com.volcengine.model.stream.GetVideoUrlRequest 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.stream;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
@Data
public class GetVideoUrlRequest {
@JSONField(name = "Partner")
String partner;
@JSONField(name = "AccessToken")
String accessToken;
@JSONField(name = "Timestamp")
long timestamp;
@JSONField(name = "Nonce")
String nonce;
@JSONField(name = "codec_type")
String codecType;
@JSONField(name = "scene")
String scene;
@JSONField(name = "video_id")
String videoId;
@JSONField(name = "CustomVideoDefinition")
String customVideoDefinition;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy