com.volcengine.model.imagex.v2.UpdateImageTranscodeQueueStatusBody 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;
/**
* UpdateImageTranscodeQueueStatusBody
*/
@lombok.Data
public final class UpdateImageTranscodeQueueStatusBody {
/**
* 待更新的队列 ID,您可通过调用[GetImageTranscodeQueues](https://www.volcengine.com/docs/508/1107341)获取该账号下全部任务队列 ID。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Id")
private String id;
/**
* 更新后的队列状态。取值如下所示:
*
* - `Pending`:排队中
*
* - `Running`:执行中
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Status")
private String status;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy