com.volcengine.model.imagex.v2.GetImageTranscodeDetailsResResultExecInfoItemExecOutput 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;
/**
* GetImageTranscodeDetailsResResultExecInfoItemExecOutput
*/
@lombok.Data
public final class GetImageTranscodeDetailsResResultExecInfoItemExecOutput {
/**
* 转码结果图大小,单位为 byte
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Size")
private Long size;
/**
* 转码结果图格式
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Format")
private String format;
/**
* 转码失败错误信息。仅当`Status`值为`Fail`时,`ErrMsg`有值。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ErrMsg")
private String errMsg;
/**
* 转码结果图的存储 URI。仅当`Status`值为`Success`时,`Output`有值。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Output")
private String output;
/**
* 转码失败[错误码](https://www.volcengine.com/docs/508/1104726#%E9%94%99%E8%AF%AF%E7%A0%81)。仅当`Status`值为`Fail`时,`ErrCode`有值。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ErrCode")
private String errCode;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy