com.volcengine.model.imagex.v2.CommitImageUploadResResultResultsItem 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;
/**
* CommitImageUploadResResultResultsItem
*/
@lombok.Data
public final class CommitImageUploadResResultResultsItem {
/**
* 源图片的 Uri。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Uri")
private String uri;
/**
* 图片上传结果。
*
* * 返回值为 2000,表示上传成功;
*
* * 返回值为 2001,表示上传失败。
*
* :::tip
*
* 需要传 SuccessOids 才会返回值。
*
* :::
*/
@com.alibaba.fastjson.annotation.JSONField(name = "UriStatus")
private Integer uriStatus;
/**
* 加密结果。
*
* :::tip
*
* 指定了 Encryption Function 时有值 。
*
* :::
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Encryption")
private CommitImageUploadResResultResultsItemEncryption encryption;
/**
* TODO
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ImageMeta")
private CommitImageUploadResResultResultsItemImageMeta imageMeta;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy