com.volcengine.model.imagex.v2.GetImageAnalyzeResultResResultResultsItem 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;
/**
* GetImageAnalyzeResultResResultResultsItem
*/
@lombok.Data
public final class GetImageAnalyzeResultResResultResultsItem {
/**
* 任务指定 ID
*/
@com.alibaba.fastjson.annotation.JSONField(name = "RunId")
private String runId;
/**
* TODO
*/
@com.alibaba.fastjson.annotation.JSONField(name = "StartAt")
private String startAt;
/**
* 任务状态,取值如下所示:
*
* - `Running`:进行中
*
* - `Suspend`:暂停
*
* - `Done`:结束
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Status")
private String status;
/**
* 评估结果存储 URI
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ResultUri")
private String resultUri;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy