com.volcengine.model.imagex.v2.GetImageTranscodeDetailsQuery 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;
/**
* GetImageTranscodeDetailsQuery
*/
@lombok.Data
public final class GetImageTranscodeDetailsQuery {
/**
* 队列 ID,您可通过调用[GetImageTranscodeQueues](https://www.volcengine.com/docs/508/1107341)获取该账号下全部任务队列 ID。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "QueueId")
private String queueId;
/**
* 队列所在地区。默认当前地区。ToB取值枚举:cn、va、sg。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Region")
private String region;
/**
* 任务提交的起始 Unix 时间戳
*
* `StartTime`与`EndTime`时间间隔最大不超过 7 天。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "StartTime")
private Long startTime;
/**
* 任务提交的截止 Unix 时间戳
*
* `StartTime`与`EndTime`时间间隔最大不超过 7 天。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "EndTime")
private Long endTime;
/**
* 执行状态,填入多个时使用英文逗号分隔。取值如下所示:
*
*
*
* - `Pending`:排队中
*
* - `Running`:执行中
*
* - `Success`:执行成功
*
* - `Fail`:执行失败
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Status")
private String status;
/**
* 返回图片 url 或 uri 中包含该值的任务。默认为空,不传则返回所有任务。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "SearchPtn")
private String searchPtn;
/**
* 分页条数,取值范围为(0, 100]。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Limit")
private Long limit;
/**
* 分页偏移量,默认为 0。取值为 1 时,表示跳过第一条数据,从第二条数据取值。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Offset")
private Long offset;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy