com.tencentcloudapi.vod.v20180717.models.MediaSampleSnapshotItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-vod Show documentation
Show all versions of tencentcloud-sdk-java-vod Show documentation
Tencent Cloud Open API SDK for Java
/*
* Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.tencentcloudapi.vod.v20180717.models;
import com.tencentcloudapi.common.AbstractModel;
import com.tencentcloudapi.common.SSEResponseModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class MediaSampleSnapshotItem extends AbstractModel {
/**
* 采样截图规格 ID,参见[采样截图参数模板](https://cloud.tencent.com/document/product/266/33480#.E9.87.87.E6.A0.B7.E6.88.AA.E5.9B.BE.E6.A8.A1.E6.9D.BF)。
*/
@SerializedName("Definition")
@Expose
private Long Definition;
/**
* 采样方式,取值范围:
Percent:根据百分比间隔采样。
Time:根据时间间隔采样。
*/
@SerializedName("SampleType")
@Expose
private String SampleType;
/**
* 采样间隔
当 SampleType 为 Percent 时,该值表示多少百分比一张图。
当 SampleType 为 Time 时,该值表示多少时间间隔一张图,单位秒, 第一张图均为视频首帧。
*/
@SerializedName("Interval")
@Expose
private Long Interval;
/**
* 生成的截图 url 列表。
*/
@SerializedName("ImageUrlSet")
@Expose
private String [] ImageUrlSet;
/**
* 截图如果被打上了水印,被打水印的模板 ID 列表。
*/
@SerializedName("WaterMarkDefinition")
@Expose
private Long [] WaterMarkDefinition;
/**
* Get 采样截图规格 ID,参见[采样截图参数模板](https://cloud.tencent.com/document/product/266/33480#.E9.87.87.E6.A0.B7.E6.88.AA.E5.9B.BE.E6.A8.A1.E6.9D.BF)。
* @return Definition 采样截图规格 ID,参见[采样截图参数模板](https://cloud.tencent.com/document/product/266/33480#.E9.87.87.E6.A0.B7.E6.88.AA.E5.9B.BE.E6.A8.A1.E6.9D.BF)。
*/
public Long getDefinition() {
return this.Definition;
}
/**
* Set 采样截图规格 ID,参见[采样截图参数模板](https://cloud.tencent.com/document/product/266/33480#.E9.87.87.E6.A0.B7.E6.88.AA.E5.9B.BE.E6.A8.A1.E6.9D.BF)。
* @param Definition 采样截图规格 ID,参见[采样截图参数模板](https://cloud.tencent.com/document/product/266/33480#.E9.87.87.E6.A0.B7.E6.88.AA.E5.9B.BE.E6.A8.A1.E6.9D.BF)。
*/
public void setDefinition(Long Definition) {
this.Definition = Definition;
}
/**
* Get 采样方式,取值范围:
Percent:根据百分比间隔采样。
Time:根据时间间隔采样。
* @return SampleType 采样方式,取值范围:
Percent:根据百分比间隔采样。
Time:根据时间间隔采样。
*/
public String getSampleType() {
return this.SampleType;
}
/**
* Set 采样方式,取值范围:
Percent:根据百分比间隔采样。
Time:根据时间间隔采样。
* @param SampleType 采样方式,取值范围:
Percent:根据百分比间隔采样。
Time:根据时间间隔采样。
*/
public void setSampleType(String SampleType) {
this.SampleType = SampleType;
}
/**
* Get 采样间隔
当 SampleType 为 Percent 时,该值表示多少百分比一张图。
当 SampleType 为 Time 时,该值表示多少时间间隔一张图,单位秒, 第一张图均为视频首帧。
* @return Interval 采样间隔
当 SampleType 为 Percent 时,该值表示多少百分比一张图。
当 SampleType 为 Time 时,该值表示多少时间间隔一张图,单位秒, 第一张图均为视频首帧。
*/
public Long getInterval() {
return this.Interval;
}
/**
* Set 采样间隔
当 SampleType 为 Percent 时,该值表示多少百分比一张图。
当 SampleType 为 Time 时,该值表示多少时间间隔一张图,单位秒, 第一张图均为视频首帧。
* @param Interval 采样间隔
当 SampleType 为 Percent 时,该值表示多少百分比一张图。
当 SampleType 为 Time 时,该值表示多少时间间隔一张图,单位秒, 第一张图均为视频首帧。
*/
public void setInterval(Long Interval) {
this.Interval = Interval;
}
/**
* Get 生成的截图 url 列表。
* @return ImageUrlSet 生成的截图 url 列表。
*/
public String [] getImageUrlSet() {
return this.ImageUrlSet;
}
/**
* Set 生成的截图 url 列表。
* @param ImageUrlSet 生成的截图 url 列表。
*/
public void setImageUrlSet(String [] ImageUrlSet) {
this.ImageUrlSet = ImageUrlSet;
}
/**
* Get 截图如果被打上了水印,被打水印的模板 ID 列表。
* @return WaterMarkDefinition 截图如果被打上了水印,被打水印的模板 ID 列表。
*/
public Long [] getWaterMarkDefinition() {
return this.WaterMarkDefinition;
}
/**
* Set 截图如果被打上了水印,被打水印的模板 ID 列表。
* @param WaterMarkDefinition 截图如果被打上了水印,被打水印的模板 ID 列表。
*/
public void setWaterMarkDefinition(Long [] WaterMarkDefinition) {
this.WaterMarkDefinition = WaterMarkDefinition;
}
public MediaSampleSnapshotItem() {
}
/**
* NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
* and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
*/
public MediaSampleSnapshotItem(MediaSampleSnapshotItem source) {
if (source.Definition != null) {
this.Definition = new Long(source.Definition);
}
if (source.SampleType != null) {
this.SampleType = new String(source.SampleType);
}
if (source.Interval != null) {
this.Interval = new Long(source.Interval);
}
if (source.ImageUrlSet != null) {
this.ImageUrlSet = new String[source.ImageUrlSet.length];
for (int i = 0; i < source.ImageUrlSet.length; i++) {
this.ImageUrlSet[i] = new String(source.ImageUrlSet[i]);
}
}
if (source.WaterMarkDefinition != null) {
this.WaterMarkDefinition = new Long[source.WaterMarkDefinition.length];
for (int i = 0; i < source.WaterMarkDefinition.length; i++) {
this.WaterMarkDefinition[i] = new Long(source.WaterMarkDefinition[i]);
}
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "Definition", this.Definition);
this.setParamSimple(map, prefix + "SampleType", this.SampleType);
this.setParamSimple(map, prefix + "Interval", this.Interval);
this.setParamArraySimple(map, prefix + "ImageUrlSet.", this.ImageUrlSet);
this.setParamArraySimple(map, prefix + "WaterMarkDefinition.", this.WaterMarkDefinition);
}
}