
com.tencentcloudapi.ie.v20200304.models.MediaCuttingInfo Maven / Gradle / Ivy
/*
* 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.ie.v20200304.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class MediaCuttingInfo extends AbstractModel{
/**
* 截取时间信息。
*/
@SerializedName("TimeInfo")
@Expose
private MediaCuttingTimeInfo TimeInfo;
/**
* 输出结果信息。
*/
@SerializedName("TargetInfo")
@Expose
private MediaTargetInfo TargetInfo;
/**
* 截取结果形式信息。
*/
@SerializedName("OutForm")
@Expose
private MediaCuttingOutForm OutForm;
/**
* 列表文件形式,存储到用户存储服务中,可选值:
UseSaveInfo:默认,结果列表和结果存储同一位置;
NoListFile:不存储结果列表。
*/
@SerializedName("ResultListSaveType")
@Expose
private String ResultListSaveType;
/**
* Get 截取时间信息。
* @return TimeInfo 截取时间信息。
*/
public MediaCuttingTimeInfo getTimeInfo() {
return this.TimeInfo;
}
/**
* Set 截取时间信息。
* @param TimeInfo 截取时间信息。
*/
public void setTimeInfo(MediaCuttingTimeInfo TimeInfo) {
this.TimeInfo = TimeInfo;
}
/**
* Get 输出结果信息。
* @return TargetInfo 输出结果信息。
*/
public MediaTargetInfo getTargetInfo() {
return this.TargetInfo;
}
/**
* Set 输出结果信息。
* @param TargetInfo 输出结果信息。
*/
public void setTargetInfo(MediaTargetInfo TargetInfo) {
this.TargetInfo = TargetInfo;
}
/**
* Get 截取结果形式信息。
* @return OutForm 截取结果形式信息。
*/
public MediaCuttingOutForm getOutForm() {
return this.OutForm;
}
/**
* Set 截取结果形式信息。
* @param OutForm 截取结果形式信息。
*/
public void setOutForm(MediaCuttingOutForm OutForm) {
this.OutForm = OutForm;
}
/**
* Get 列表文件形式,存储到用户存储服务中,可选值:
UseSaveInfo:默认,结果列表和结果存储同一位置;
NoListFile:不存储结果列表。
* @return ResultListSaveType 列表文件形式,存储到用户存储服务中,可选值:
UseSaveInfo:默认,结果列表和结果存储同一位置;
NoListFile:不存储结果列表。
*/
public String getResultListSaveType() {
return this.ResultListSaveType;
}
/**
* Set 列表文件形式,存储到用户存储服务中,可选值:
UseSaveInfo:默认,结果列表和结果存储同一位置;
NoListFile:不存储结果列表。
* @param ResultListSaveType 列表文件形式,存储到用户存储服务中,可选值:
UseSaveInfo:默认,结果列表和结果存储同一位置;
NoListFile:不存储结果列表。
*/
public void setResultListSaveType(String ResultListSaveType) {
this.ResultListSaveType = ResultListSaveType;
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamObj(map, prefix + "TimeInfo.", this.TimeInfo);
this.setParamObj(map, prefix + "TargetInfo.", this.TargetInfo);
this.setParamObj(map, prefix + "OutForm.", this.OutForm);
this.setParamSimple(map, prefix + "ResultListSaveType", this.ResultListSaveType);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy