com.volcengine.model.imagex.v2.GetImageTranscodeDetailsResResultExecInfoItem 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.imagex.v2;
import com.alibaba.fastjson.JSON;
/**
* GetImageTranscodeDetailsResResultExecInfoItem
*/
@lombok.Data
public final class GetImageTranscodeDetailsResResultExecInfoItem {
/**
* 执行条目 ID
*/
@com.alibaba.fastjson.annotation.JSONField(name = "EntryId")
private String entryId;
/**
* 提交时间
*/
@com.alibaba.fastjson.annotation.JSONField(name = "SubmitAt")
private String submitAt;
/**
* 开始时间
*/
@com.alibaba.fastjson.annotation.JSONField(name = "StartAt")
private String startAt;
/**
* 结束时间
*/
@com.alibaba.fastjson.annotation.JSONField(name = "EndAt")
private String endAt;
/**
* 执行状态。取值如下所示:
*
*
*
* - `Pending`:排队中
*
* - `Running`:执行中
*
* - `Success`:执行成功
*
* - `Fail`:执行失败
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Status")
private String status;
/**
* 执行输入
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ExecInput")
private GetImageTranscodeDetailsResResultExecInfoItemExecInput execInput;
/**
* 执行输出
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ExecOutput")
private GetImageTranscodeDetailsResResultExecInfoItemExecOutput execOutput;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy