com.volcengine.model.live.v20230101.CreateSnapshotPresetV2BodySnapshotPresetConfigJpegParamImageXParam 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.live.v20230101;
import com.alibaba.fastjson.JSON;
/**
* CreateSnapshotPresetV2BodySnapshotPresetConfigJpegParamImageXParam
*/
@lombok.Data
public final class CreateSnapshotPresetV2BodySnapshotPresetConfigJpegParamImageXParam {
/**
* 截图是否使用 veImageX 存储,取值及含义如下所示。
*
* - `false`:(默认值)不使用;
*
* - `true`:使用。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Enable")
private Boolean enable;
/**
* 使用 veImageX 存储截图时,对应的 veImageX 的服务 ID。
*
* :::tip
*
* 使用 veImageX 存储时 ServiceID 为必填项。
*
* :::
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ServiceID")
private String serviceID;
/**
* 存储方式为覆盖截图时的存储规则,支持以 {Domain}/{App}/{Stream} 样式设置存储规则,支持输入字母、数字、-、!、\_、.、\* 及占位符。
*
* :::tip
*
* 参数 ExactObject 和 OverwriteObject 传且仅传一个。
*
* :::
*/
@com.alibaba.fastjson.annotation.JSONField(name = "OverwriteObject")
private String overwriteObject;
/**
* 存储方式为实时截图时的存储规则,支持以 {Domain}/{App}/{Stream}/{UnixTimestamp} 样式设置存储规则,支持输入字母、数字、-、!、\_、.、\* 及占位符。
*
* :::tip
*
* 参数 ExactObject 和 OverwriteObject 传且仅传一个。
*
* :::
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ExactObject")
private String exactObject;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy