com.volcengine.model.imagex.v2.GetImageAnalyzeResultQuery 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;
/**
* GetImageAnalyzeResultQuery
*/
@lombok.Data
public final class GetImageAnalyzeResultQuery {
/**
* 任务 ID,您可以通过调用 [GetImageAnalyzeTasks](https://www.volcengine.com/docs/508/1160417) 获取指定地区全部离线评估任务 ID。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "TaskId")
private String taskId;
/**
* 任务运行开始时间,Unix 时间戳。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "StartTime")
private Long startTime;
/**
* 任务运行结束时间,Unix 时间戳。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "EndTime")
private Long endTime;
/**
* 任务执行 ID
*/
@com.alibaba.fastjson.annotation.JSONField(name = "RunId")
private String runId;
/**
* 分页条数。默认值为 10。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Limit")
private Integer limit;
/**
* 分页偏移量,默认为 0。取值为 1 时,表示跳过第一条数据,从第二条数据取值。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Offset")
private Integer offset;
/**
* 文件名
*/
@com.alibaba.fastjson.annotation.JSONField(name = "File")
private String file;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy