com.volcengine.model.imagex.v2.GetImageTranscodeQueuesQuery 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;
/**
* GetImageTranscodeQueuesQuery
*/
@lombok.Data
public final class GetImageTranscodeQueuesQuery {
/**
* 队列所在地区。默认当前地区。ToB取值枚举:cn、va、sg。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Region")
private String region;
/**
* 返回队列名称或队列描述中包含该值的队列。默认为空,不传则返回所有队列。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "SearchPtn")
private String searchPtn;
/**
* 分页条数,取值范围为(0,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