com.volcengine.model.livesaas.request.UpdateLoopVideosRequest 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 com.volcengine.model.beans.livesaas.LoopVideoListReq;
import lombok.Data;
import java.util.List;
@Data
public class UpdateLoopVideosRequest {
@JSONField(name = "LoopNumber")
Integer LoopNumber;
@JSONField(name = "LoopVideos")
List LoopVideos;
@JSONField(name = "ActivityId")
Long ActivityId;
@JSONField(name = "LineId")
Long LineId;
@JSONField(name = "ProgramName")
String ProgramName;
@JSONField(name = "IsShowProgram")
Integer IsShowProgram;
@JSONField(name = "PlayType")
Integer PlayType;
@JSONField(name = "AutoStartTime")
Long AutoStartTime;
@JSONField(name = "AutoEndTime")
Long AutoEndTime;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy