All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tencentcloudapi.vod.v20180717.models.QualityInspectTemplateItem Maven / Gradle / Ivy

There is a newer version: 3.0.1076
Show newest version
/*
 * 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 QualityInspectTemplateItem extends AbstractModel {

    /**
    * Media quality inspection template ID.
    */
    @SerializedName("Definition")
    @Expose
    private Long Definition;

    /**
    * Template Type, available options: 
  • Preset: Preset Template;
  • Custom: User Custom Template.
  • */ @SerializedName("Type") @Expose private String Type; /** * Media quality inspection template name. */ @SerializedName("Name") @Expose private String Name; /** * Template description. */ @SerializedName("Comment") @Expose private String Comment; /** * Frame interval, unit in seconds. */ @SerializedName("ScreenshotInterval") @Expose private Float ScreenshotInterval; /** * Control parameters for detecting video jitter and ghosting. */ @SerializedName("JitterConfigure") @Expose private JitterConfigureInfo JitterConfigure; /** * Control parameters for detecting video blur. */ @SerializedName("BlurConfigure") @Expose private BlurConfigureInfo BlurConfigure; /** * Control parameters for detecting low brightness and overexposure of video. */ @SerializedName("AbnormalLightingConfigure") @Expose private AbnormalLightingConfigureInfo AbnormalLightingConfigure; /** * Control parameters for detecting video crash. */ @SerializedName("CrashScreenConfigure") @Expose private CrashScreenConfigureInfo CrashScreenConfigure; /** * Control parameters for detecting video black edges, white edges, black screen, and white screen. */ @SerializedName("BlackWhiteEdgeConfigure") @Expose private BlackWhiteEdgeConfigureInfo BlackWhiteEdgeConfigure; /** * Control parameters for detecting video noise. */ @SerializedName("NoiseConfigure") @Expose private NoiseConfigureInfo NoiseConfigure; /** * Control parameters for detecting video mosaic. */ @SerializedName("MosaicConfigure") @Expose private MosaicConfigureInfo MosaicConfigure; /** * Control parameters for QR code detection in video. */ @SerializedName("QRCodeConfigure") @Expose private QRCodeConfigureInfo QRCodeConfigure; /** * Control parameters for video quality evaluation. */ @SerializedName("QualityEvaluationConfigure") @Expose private QualityEvaluationConfigureInfo QualityEvaluationConfigure; /** * Control parameters for audio (mutes, bass, blast sound). */ @SerializedName("VoiceConfigure") @Expose private VoiceConfigureInfo VoiceConfigure; /** * Template Creation Time, using [ISO date format](https://www.tencentcloud.com/document/product/266/11732#iso-date-format). */ @SerializedName("CreateTime") @Expose private String CreateTime; /** * Template Modification time, using [ISO date format](https://www.tencentcloud.com/document/product/266/11732#iso-date-format). */ @SerializedName("UpdateTime") @Expose private String UpdateTime; /** * Get Media quality inspection template ID. * @return Definition Media quality inspection template ID. */ public Long getDefinition() { return this.Definition; } /** * Set Media quality inspection template ID. * @param Definition Media quality inspection template ID. */ public void setDefinition(Long Definition) { this.Definition = Definition; } /** * Get Template Type, available options:
  • Preset: Preset Template;
  • Custom: User Custom Template.
  • * @return Type Template Type, available options:
  • Preset: Preset Template;
  • Custom: User Custom Template.
  • */ public String getType() { return this.Type; } /** * Set Template Type, available options:
  • Preset: Preset Template;
  • Custom: User Custom Template.
  • * @param Type Template Type, available options:
  • Preset: Preset Template;
  • Custom: User Custom Template.
  • */ public void setType(String Type) { this.Type = Type; } /** * Get Media quality inspection template name. * @return Name Media quality inspection template name. */ public String getName() { return this.Name; } /** * Set Media quality inspection template name. * @param Name Media quality inspection template name. */ public void setName(String Name) { this.Name = Name; } /** * Get Template description. * @return Comment Template description. */ public String getComment() { return this.Comment; } /** * Set Template description. * @param Comment Template description. */ public void setComment(String Comment) { this.Comment = Comment; } /** * Get Frame interval, unit in seconds. * @return ScreenshotInterval Frame interval, unit in seconds. */ public Float getScreenshotInterval() { return this.ScreenshotInterval; } /** * Set Frame interval, unit in seconds. * @param ScreenshotInterval Frame interval, unit in seconds. */ public void setScreenshotInterval(Float ScreenshotInterval) { this.ScreenshotInterval = ScreenshotInterval; } /** * Get Control parameters for detecting video jitter and ghosting. * @return JitterConfigure Control parameters for detecting video jitter and ghosting. */ public JitterConfigureInfo getJitterConfigure() { return this.JitterConfigure; } /** * Set Control parameters for detecting video jitter and ghosting. * @param JitterConfigure Control parameters for detecting video jitter and ghosting. */ public void setJitterConfigure(JitterConfigureInfo JitterConfigure) { this.JitterConfigure = JitterConfigure; } /** * Get Control parameters for detecting video blur. * @return BlurConfigure Control parameters for detecting video blur. */ public BlurConfigureInfo getBlurConfigure() { return this.BlurConfigure; } /** * Set Control parameters for detecting video blur. * @param BlurConfigure Control parameters for detecting video blur. */ public void setBlurConfigure(BlurConfigureInfo BlurConfigure) { this.BlurConfigure = BlurConfigure; } /** * Get Control parameters for detecting low brightness and overexposure of video. * @return AbnormalLightingConfigure Control parameters for detecting low brightness and overexposure of video. */ public AbnormalLightingConfigureInfo getAbnormalLightingConfigure() { return this.AbnormalLightingConfigure; } /** * Set Control parameters for detecting low brightness and overexposure of video. * @param AbnormalLightingConfigure Control parameters for detecting low brightness and overexposure of video. */ public void setAbnormalLightingConfigure(AbnormalLightingConfigureInfo AbnormalLightingConfigure) { this.AbnormalLightingConfigure = AbnormalLightingConfigure; } /** * Get Control parameters for detecting video crash. * @return CrashScreenConfigure Control parameters for detecting video crash. */ public CrashScreenConfigureInfo getCrashScreenConfigure() { return this.CrashScreenConfigure; } /** * Set Control parameters for detecting video crash. * @param CrashScreenConfigure Control parameters for detecting video crash. */ public void setCrashScreenConfigure(CrashScreenConfigureInfo CrashScreenConfigure) { this.CrashScreenConfigure = CrashScreenConfigure; } /** * Get Control parameters for detecting video black edges, white edges, black screen, and white screen. * @return BlackWhiteEdgeConfigure Control parameters for detecting video black edges, white edges, black screen, and white screen. */ public BlackWhiteEdgeConfigureInfo getBlackWhiteEdgeConfigure() { return this.BlackWhiteEdgeConfigure; } /** * Set Control parameters for detecting video black edges, white edges, black screen, and white screen. * @param BlackWhiteEdgeConfigure Control parameters for detecting video black edges, white edges, black screen, and white screen. */ public void setBlackWhiteEdgeConfigure(BlackWhiteEdgeConfigureInfo BlackWhiteEdgeConfigure) { this.BlackWhiteEdgeConfigure = BlackWhiteEdgeConfigure; } /** * Get Control parameters for detecting video noise. * @return NoiseConfigure Control parameters for detecting video noise. */ public NoiseConfigureInfo getNoiseConfigure() { return this.NoiseConfigure; } /** * Set Control parameters for detecting video noise. * @param NoiseConfigure Control parameters for detecting video noise. */ public void setNoiseConfigure(NoiseConfigureInfo NoiseConfigure) { this.NoiseConfigure = NoiseConfigure; } /** * Get Control parameters for detecting video mosaic. * @return MosaicConfigure Control parameters for detecting video mosaic. */ public MosaicConfigureInfo getMosaicConfigure() { return this.MosaicConfigure; } /** * Set Control parameters for detecting video mosaic. * @param MosaicConfigure Control parameters for detecting video mosaic. */ public void setMosaicConfigure(MosaicConfigureInfo MosaicConfigure) { this.MosaicConfigure = MosaicConfigure; } /** * Get Control parameters for QR code detection in video. * @return QRCodeConfigure Control parameters for QR code detection in video. */ public QRCodeConfigureInfo getQRCodeConfigure() { return this.QRCodeConfigure; } /** * Set Control parameters for QR code detection in video. * @param QRCodeConfigure Control parameters for QR code detection in video. */ public void setQRCodeConfigure(QRCodeConfigureInfo QRCodeConfigure) { this.QRCodeConfigure = QRCodeConfigure; } /** * Get Control parameters for video quality evaluation. * @return QualityEvaluationConfigure Control parameters for video quality evaluation. */ public QualityEvaluationConfigureInfo getQualityEvaluationConfigure() { return this.QualityEvaluationConfigure; } /** * Set Control parameters for video quality evaluation. * @param QualityEvaluationConfigure Control parameters for video quality evaluation. */ public void setQualityEvaluationConfigure(QualityEvaluationConfigureInfo QualityEvaluationConfigure) { this.QualityEvaluationConfigure = QualityEvaluationConfigure; } /** * Get Control parameters for audio (mutes, bass, blast sound). * @return VoiceConfigure Control parameters for audio (mutes, bass, blast sound). */ public VoiceConfigureInfo getVoiceConfigure() { return this.VoiceConfigure; } /** * Set Control parameters for audio (mutes, bass, blast sound). * @param VoiceConfigure Control parameters for audio (mutes, bass, blast sound). */ public void setVoiceConfigure(VoiceConfigureInfo VoiceConfigure) { this.VoiceConfigure = VoiceConfigure; } /** * Get Template Creation Time, using [ISO date format](https://www.tencentcloud.com/document/product/266/11732#iso-date-format). * @return CreateTime Template Creation Time, using [ISO date format](https://www.tencentcloud.com/document/product/266/11732#iso-date-format). */ public String getCreateTime() { return this.CreateTime; } /** * Set Template Creation Time, using [ISO date format](https://www.tencentcloud.com/document/product/266/11732#iso-date-format). * @param CreateTime Template Creation Time, using [ISO date format](https://www.tencentcloud.com/document/product/266/11732#iso-date-format). */ public void setCreateTime(String CreateTime) { this.CreateTime = CreateTime; } /** * Get Template Modification time, using [ISO date format](https://www.tencentcloud.com/document/product/266/11732#iso-date-format). * @return UpdateTime Template Modification time, using [ISO date format](https://www.tencentcloud.com/document/product/266/11732#iso-date-format). */ public String getUpdateTime() { return this.UpdateTime; } /** * Set Template Modification time, using [ISO date format](https://www.tencentcloud.com/document/product/266/11732#iso-date-format). * @param UpdateTime Template Modification time, using [ISO date format](https://www.tencentcloud.com/document/product/266/11732#iso-date-format). */ public void setUpdateTime(String UpdateTime) { this.UpdateTime = UpdateTime; } public QualityInspectTemplateItem() { } /** * 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 QualityInspectTemplateItem(QualityInspectTemplateItem source) { if (source.Definition != null) { this.Definition = new Long(source.Definition); } if (source.Type != null) { this.Type = new String(source.Type); } if (source.Name != null) { this.Name = new String(source.Name); } if (source.Comment != null) { this.Comment = new String(source.Comment); } if (source.ScreenshotInterval != null) { this.ScreenshotInterval = new Float(source.ScreenshotInterval); } if (source.JitterConfigure != null) { this.JitterConfigure = new JitterConfigureInfo(source.JitterConfigure); } if (source.BlurConfigure != null) { this.BlurConfigure = new BlurConfigureInfo(source.BlurConfigure); } if (source.AbnormalLightingConfigure != null) { this.AbnormalLightingConfigure = new AbnormalLightingConfigureInfo(source.AbnormalLightingConfigure); } if (source.CrashScreenConfigure != null) { this.CrashScreenConfigure = new CrashScreenConfigureInfo(source.CrashScreenConfigure); } if (source.BlackWhiteEdgeConfigure != null) { this.BlackWhiteEdgeConfigure = new BlackWhiteEdgeConfigureInfo(source.BlackWhiteEdgeConfigure); } if (source.NoiseConfigure != null) { this.NoiseConfigure = new NoiseConfigureInfo(source.NoiseConfigure); } if (source.MosaicConfigure != null) { this.MosaicConfigure = new MosaicConfigureInfo(source.MosaicConfigure); } if (source.QRCodeConfigure != null) { this.QRCodeConfigure = new QRCodeConfigureInfo(source.QRCodeConfigure); } if (source.QualityEvaluationConfigure != null) { this.QualityEvaluationConfigure = new QualityEvaluationConfigureInfo(source.QualityEvaluationConfigure); } if (source.VoiceConfigure != null) { this.VoiceConfigure = new VoiceConfigureInfo(source.VoiceConfigure); } if (source.CreateTime != null) { this.CreateTime = new String(source.CreateTime); } if (source.UpdateTime != null) { this.UpdateTime = new String(source.UpdateTime); } } /** * 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 + "Type", this.Type); this.setParamSimple(map, prefix + "Name", this.Name); this.setParamSimple(map, prefix + "Comment", this.Comment); this.setParamSimple(map, prefix + "ScreenshotInterval", this.ScreenshotInterval); this.setParamObj(map, prefix + "JitterConfigure.", this.JitterConfigure); this.setParamObj(map, prefix + "BlurConfigure.", this.BlurConfigure); this.setParamObj(map, prefix + "AbnormalLightingConfigure.", this.AbnormalLightingConfigure); this.setParamObj(map, prefix + "CrashScreenConfigure.", this.CrashScreenConfigure); this.setParamObj(map, prefix + "BlackWhiteEdgeConfigure.", this.BlackWhiteEdgeConfigure); this.setParamObj(map, prefix + "NoiseConfigure.", this.NoiseConfigure); this.setParamObj(map, prefix + "MosaicConfigure.", this.MosaicConfigure); this.setParamObj(map, prefix + "QRCodeConfigure.", this.QRCodeConfigure); this.setParamObj(map, prefix + "QualityEvaluationConfigure.", this.QualityEvaluationConfigure); this.setParamObj(map, prefix + "VoiceConfigure.", this.VoiceConfigure); this.setParamSimple(map, prefix + "CreateTime", this.CreateTime); this.setParamSimple(map, prefix + "UpdateTime", this.UpdateTime); } }




    © 2015 - 2025 Weber Informatics LLC | Privacy Policy