/*
* Copyright (c) 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.
*/
namespace TencentCloud.Vod.V20180717.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class TransitionOpertion : AbstractModel
{
///
/// 转场类型,取值有:
///
/// - 图像的转场操作,用于两个视频片段图像间的转场处理:
///
/// - ImageFadeInFadeOut:图像淡入淡出。
/// - BowTieHorizontal:水平蝴蝶结。
/// - BowTieVertical:垂直蝴蝶结。
/// - ButterflyWaveScrawler:晃动。
/// - Cannabisleaf:枫叶。
/// - Circle:弧形收放。
/// - CircleCrop:圆环聚拢。
/// - Circleopen:椭圆聚拢。
/// - Crosswarp:横向翘曲。
/// - Cube:立方体。
/// - DoomScreenTransition:幕布。
/// - Doorway:门廊。
/// - Dreamy:波浪。
/// - DreamyZoom:水平聚拢。
/// - FilmBurn:火烧云。
/// - GlitchMemories:抖动。
/// - Heart:心形。
/// - InvertedPageCurl:翻页。
/// - Luma:腐蚀。
/// - Mosaic:九宫格。
/// - Pinwheel:风车。
/// - PolarFunction:椭圆扩散。
/// - PolkaDotsCurtain:弧形扩散。
/// - Radial:雷达扫描
/// - RotateScaleFade:上下收放。
/// - Squeeze:上下聚拢。
/// - Swap:放大切换。
/// - Swirl:螺旋。
/// - UndulatingBurnOutSwirl:水流蔓延。
/// - Windowblinds:百叶窗。
/// - WipeDown:向下收起。
/// - WipeLeft:向左收起。
/// - WipeRight:向右收起。
/// - WipeUp:向上收起。
/// - ZoomInCircles:水波纹。
///
///
/// - 音频的转场操作,用于两个音频片段间的转场处理:
///
/// - AudioFadeInFadeOut:声音淡入淡出。
///
///
///
///
[JsonProperty("Type")]
public string Type{ get; set; }
///
/// For internal usage only. DO NOT USE IT.
///
internal override void ToMap(Dictionary map, string prefix)
{
this.SetParamSimple(map, prefix + "Type", this.Type);
}
}
}