com.tencentcloudapi.vod.v20180717.models.MediaAiAnalysisHighlightItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Tencent Cloud 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 MediaAiAnalysisHighlightItem extends AbstractModel {
/**
* Address of an intelligently generated highlight.
*/
@SerializedName("HighlightUrl")
@Expose
private String HighlightUrl;
/**
* Address of an intelligently generated highlight cover.
*/
@SerializedName("CovImgUrl")
@Expose
private String CovImgUrl;
/**
* Confidence of an intelligently generated highlight between 0 and 100.
*/
@SerializedName("Confidence")
@Expose
private Float Confidence;
/**
* Duration of an intelligently generated highlight.
*/
@SerializedName("Duration")
@Expose
private Float Duration;
/**
* List of intelligently generated highlight subsegments, which together form a highlight.
*/
@SerializedName("SegmentSet")
@Expose
private HighlightSegmentItem [] SegmentSet;
/**
* Get Address of an intelligently generated highlight.
* @return HighlightUrl Address of an intelligently generated highlight.
*/
public String getHighlightUrl() {
return this.HighlightUrl;
}
/**
* Set Address of an intelligently generated highlight.
* @param HighlightUrl Address of an intelligently generated highlight.
*/
public void setHighlightUrl(String HighlightUrl) {
this.HighlightUrl = HighlightUrl;
}
/**
* Get Address of an intelligently generated highlight cover.
* @return CovImgUrl Address of an intelligently generated highlight cover.
*/
public String getCovImgUrl() {
return this.CovImgUrl;
}
/**
* Set Address of an intelligently generated highlight cover.
* @param CovImgUrl Address of an intelligently generated highlight cover.
*/
public void setCovImgUrl(String CovImgUrl) {
this.CovImgUrl = CovImgUrl;
}
/**
* Get Confidence of an intelligently generated highlight between 0 and 100.
* @return Confidence Confidence of an intelligently generated highlight between 0 and 100.
*/
public Float getConfidence() {
return this.Confidence;
}
/**
* Set Confidence of an intelligently generated highlight between 0 and 100.
* @param Confidence Confidence of an intelligently generated highlight between 0 and 100.
*/
public void setConfidence(Float Confidence) {
this.Confidence = Confidence;
}
/**
* Get Duration of an intelligently generated highlight.
* @return Duration Duration of an intelligently generated highlight.
*/
public Float getDuration() {
return this.Duration;
}
/**
* Set Duration of an intelligently generated highlight.
* @param Duration Duration of an intelligently generated highlight.
*/
public void setDuration(Float Duration) {
this.Duration = Duration;
}
/**
* Get List of intelligently generated highlight subsegments, which together form a highlight.
* @return SegmentSet List of intelligently generated highlight subsegments, which together form a highlight.
*/
public HighlightSegmentItem [] getSegmentSet() {
return this.SegmentSet;
}
/**
* Set List of intelligently generated highlight subsegments, which together form a highlight.
* @param SegmentSet List of intelligently generated highlight subsegments, which together form a highlight.
*/
public void setSegmentSet(HighlightSegmentItem [] SegmentSet) {
this.SegmentSet = SegmentSet;
}
public MediaAiAnalysisHighlightItem() {
}
/**
* 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 MediaAiAnalysisHighlightItem(MediaAiAnalysisHighlightItem source) {
if (source.HighlightUrl != null) {
this.HighlightUrl = new String(source.HighlightUrl);
}
if (source.CovImgUrl != null) {
this.CovImgUrl = new String(source.CovImgUrl);
}
if (source.Confidence != null) {
this.Confidence = new Float(source.Confidence);
}
if (source.Duration != null) {
this.Duration = new Float(source.Duration);
}
if (source.SegmentSet != null) {
this.SegmentSet = new HighlightSegmentItem[source.SegmentSet.length];
for (int i = 0; i < source.SegmentSet.length; i++) {
this.SegmentSet[i] = new HighlightSegmentItem(source.SegmentSet[i]);
}
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "HighlightUrl", this.HighlightUrl);
this.setParamSimple(map, prefix + "CovImgUrl", this.CovImgUrl);
this.setParamSimple(map, prefix + "Confidence", this.Confidence);
this.setParamSimple(map, prefix + "Duration", this.Duration);
this.setParamArrayObj(map, prefix + "SegmentSet.", this.SegmentSet);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy