com.volcengine.model.imagex.v2.CreateImageTranscodeQueueBody 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;
/**
* CreateImageTranscodeQueueBody
*/
@lombok.Data
public final class CreateImageTranscodeQueueBody {
/**
* 自定义任务队列名称
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Name")
private String name;
/**
* 自定义任务队列描述,可用于备注该队列的用途。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Desc")
private String desc;
/**
* 是否启动队列,开始执行离线转码操作。取值如下所示:
*
* - `true`:启动
*
* - `false`:不启动
*/
@com.alibaba.fastjson.annotation.JSONField(name = "IsStart")
private Boolean isStart;
/**
* 队列区域。默认当前区域。ToB支持取值:cn、va、sg。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Region")
private String region;
/**
* 队列回调设置
*/
@com.alibaba.fastjson.annotation.JSONField(name = "CallbackConf")
private CreateImageTranscodeQueueBodyCallbackConf callbackConf;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy