com.volcengine.model.live.v20230101.TranscodingJobStatusResResultDataItem 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.live.v20230101;
import com.alibaba.fastjson.JSON;
/**
* TranscodingJobStatusResResultDataItem
*/
@lombok.Data
public final class TranscodingJobStatusResResultDataItem {
/**
* 本次转码任务的开始时间,Unix 时间戳,单位为秒。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "StartTime")
private Integer startTime;
/**
* 本次转码任务的状态,取值及含义如下所示。
*
* - `init`:转码任务初始化中;
*
* - `fetched`:转码任务调度中;
*
* - `pending`:转码任务即将开始;
*
* - `doing`:转码任务进行中;
*
* - `prestop`:转码任务即将结束;
*
* - `done`:转码任务已结束。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Status")
private String status;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy