com.volcengine.model.imagex.v2.GetImageAnalyzeTasksResResultTasksItem 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;
import java.util.List;
/**
* GetImageAnalyzeTasksResResultTasksItem
*/
@lombok.Data
public final class GetImageAnalyzeTasksResResultTasksItem {
/**
* 离线评估任务名称
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Name")
private String name;
/**
* 任务描述
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Desc")
private String desc;
/**
* 任务类型,取值如下所示:
*
* - `UrlFile`:在线提交 URL 离线评估
*
* - `UriFile`:在线提交 URI 离线评估
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Type")
private String type;
/**
* 所在服务的服务 ID
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ServiceId")
private String serviceId;
/**
* TODO
*/
@com.alibaba.fastjson.annotation.JSONField(name = "SampleRate")
private Double sampleRate;
/**
* `Type` 取值 `UriFile` 时,指定的模版名称。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Tpl")
private String tpl;
/**
* txt 评估文件的 Store URI。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ResUri")
private List resUri;
/**
* 是否模拟模板每阶段输出,取值如下所示:
*
* - `true`:是
*
* - `false`:否
*/
@com.alibaba.fastjson.annotation.JSONField(name = "EvalPerStage")
private Boolean evalPerStage;
/**
* 该条评估任务的任务 ID
*/
@com.alibaba.fastjson.annotation.JSONField(name = "TaskId")
private String taskId;
/**
* 任务状态,取值如下所示:
*
* - `Pending`:排队中
*
* - `Done`:已完成
*
* - `Running`:进行中
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Status")
private String status;
/**
* 评估任务创建时间
*/
@com.alibaba.fastjson.annotation.JSONField(name = "CreateAt")
private String createAt;
/**
* 评估任务更新时间
*/
@com.alibaba.fastjson.annotation.JSONField(name = "UpdateAt")
private String updateAt;
/**
* TODO
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Id")
private String id;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy