com.volcengine.model.imagex.v2.GetImageAuditTasksQuery 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;
/**
* GetImageAuditTasksQuery
*/
@lombok.Data
public final class GetImageAuditTasksQuery {
/**
* 任务地区。仅支持默认取值 `cn`,表示国内。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Region")
private String region;
/**
* 审核场景,缺省情况下查询全部场景的任务。取值如下所示:
*
*
*
* - `UrlFile`:上传 txt 审核文件处理场景
*
* - `Url`:上传审核图片 URL 处理场景
*
* - `Upload`:图片上传场景
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Type")
private String type;
/**
* 审核能力,缺省情况下查询全部审核类型的任务。取值如下所示:
*
*
*
* - `0`:基础审核能力
*
* - `1`:智能审核能力
*/
@com.alibaba.fastjson.annotation.JSONField(name = "AuditAbility")
private Integer auditAbility;
/**
* 审核状态,缺省情况下查询全部状态的任务。取值如下所示:
*
*
*
* - `Running`:审核中
*
* - `Suspend`:已暂停
*
* - `Done`:已完成
*
* - `Failed`:审核失败
*
* - `Cancel`:已取消
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Status")
private String status;
/**
* 审核任务类型,当前仅支持取值为 `audit`。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "TaskType")
private String taskType;
/**
* 分页条数。取值范围为 (0,100],默认值为 100。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Limit")
private Integer limit;
/**
* 分页偏移量,默认为 0。取值为 1 时,表示跳过第一条数据,从第二条数据取值。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Offset")
private Integer offset;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy