com.tencentcloudapi.mps.v20190612.models.EditMediaRequest 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.mps.v20190612.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class EditMediaRequest extends AbstractModel{
/**
* 输入的视频文件信息。
*/
@SerializedName("FileInfos")
@Expose
private EditMediaFileInfo [] FileInfos;
/**
* 媒体处理输出文件的目标存储。
*/
@SerializedName("OutputStorage")
@Expose
private TaskOutputStorage OutputStorage;
/**
* 媒体处理输出文件的目标路径。
*/
@SerializedName("OutputObjectPath")
@Expose
private String OutputObjectPath;
/**
* 编辑后生成的文件配置。
*/
@SerializedName("OutputConfig")
@Expose
private EditMediaOutputConfig OutputConfig;
/**
* 任务的事件通知信息,不填代表不获取事件通知。
*/
@SerializedName("TaskNotifyConfig")
@Expose
private TaskNotifyConfig TaskNotifyConfig;
/**
* 任务优先级,数值越大优先级越高,取值范围是-10到 10,不填代表0。
*/
@SerializedName("TasksPriority")
@Expose
private Long TasksPriority;
/**
* 用于去重的识别码,如果三天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长 50 个字符,不带或者带空字符串表示不做去重。
*/
@SerializedName("SessionId")
@Expose
private String SessionId;
/**
* 来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长 1000 个字符。
*/
@SerializedName("SessionContext")
@Expose
private String SessionContext;
/**
* Get 输入的视频文件信息。
* @return FileInfos 输入的视频文件信息。
*/
public EditMediaFileInfo [] getFileInfos() {
return this.FileInfos;
}
/**
* Set 输入的视频文件信息。
* @param FileInfos 输入的视频文件信息。
*/
public void setFileInfos(EditMediaFileInfo [] FileInfos) {
this.FileInfos = FileInfos;
}
/**
* Get 媒体处理输出文件的目标存储。
* @return OutputStorage 媒体处理输出文件的目标存储。
*/
public TaskOutputStorage getOutputStorage() {
return this.OutputStorage;
}
/**
* Set 媒体处理输出文件的目标存储。
* @param OutputStorage 媒体处理输出文件的目标存储。
*/
public void setOutputStorage(TaskOutputStorage OutputStorage) {
this.OutputStorage = OutputStorage;
}
/**
* Get 媒体处理输出文件的目标路径。
* @return OutputObjectPath 媒体处理输出文件的目标路径。
*/
public String getOutputObjectPath() {
return this.OutputObjectPath;
}
/**
* Set 媒体处理输出文件的目标路径。
* @param OutputObjectPath 媒体处理输出文件的目标路径。
*/
public void setOutputObjectPath(String OutputObjectPath) {
this.OutputObjectPath = OutputObjectPath;
}
/**
* Get 编辑后生成的文件配置。
* @return OutputConfig 编辑后生成的文件配置。
*/
public EditMediaOutputConfig getOutputConfig() {
return this.OutputConfig;
}
/**
* Set 编辑后生成的文件配置。
* @param OutputConfig 编辑后生成的文件配置。
*/
public void setOutputConfig(EditMediaOutputConfig OutputConfig) {
this.OutputConfig = OutputConfig;
}
/**
* Get 任务的事件通知信息,不填代表不获取事件通知。
* @return TaskNotifyConfig 任务的事件通知信息,不填代表不获取事件通知。
*/
public TaskNotifyConfig getTaskNotifyConfig() {
return this.TaskNotifyConfig;
}
/**
* Set 任务的事件通知信息,不填代表不获取事件通知。
* @param TaskNotifyConfig 任务的事件通知信息,不填代表不获取事件通知。
*/
public void setTaskNotifyConfig(TaskNotifyConfig TaskNotifyConfig) {
this.TaskNotifyConfig = TaskNotifyConfig;
}
/**
* Get 任务优先级,数值越大优先级越高,取值范围是-10到 10,不填代表0。
* @return TasksPriority 任务优先级,数值越大优先级越高,取值范围是-10到 10,不填代表0。
*/
public Long getTasksPriority() {
return this.TasksPriority;
}
/**
* Set 任务优先级,数值越大优先级越高,取值范围是-10到 10,不填代表0。
* @param TasksPriority 任务优先级,数值越大优先级越高,取值范围是-10到 10,不填代表0。
*/
public void setTasksPriority(Long TasksPriority) {
this.TasksPriority = TasksPriority;
}
/**
* Get 用于去重的识别码,如果三天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长 50 个字符,不带或者带空字符串表示不做去重。
* @return SessionId 用于去重的识别码,如果三天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长 50 个字符,不带或者带空字符串表示不做去重。
*/
public String getSessionId() {
return this.SessionId;
}
/**
* Set 用于去重的识别码,如果三天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长 50 个字符,不带或者带空字符串表示不做去重。
* @param SessionId 用于去重的识别码,如果三天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长 50 个字符,不带或者带空字符串表示不做去重。
*/
public void setSessionId(String SessionId) {
this.SessionId = SessionId;
}
/**
* Get 来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长 1000 个字符。
* @return SessionContext 来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长 1000 个字符。
*/
public String getSessionContext() {
return this.SessionContext;
}
/**
* Set 来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长 1000 个字符。
* @param SessionContext 来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长 1000 个字符。
*/
public void setSessionContext(String SessionContext) {
this.SessionContext = SessionContext;
}
public EditMediaRequest() {
}
/**
* 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 EditMediaRequest(EditMediaRequest source) {
if (source.FileInfos != null) {
this.FileInfos = new EditMediaFileInfo[source.FileInfos.length];
for (int i = 0; i < source.FileInfos.length; i++) {
this.FileInfos[i] = new EditMediaFileInfo(source.FileInfos[i]);
}
}
if (source.OutputStorage != null) {
this.OutputStorage = new TaskOutputStorage(source.OutputStorage);
}
if (source.OutputObjectPath != null) {
this.OutputObjectPath = new String(source.OutputObjectPath);
}
if (source.OutputConfig != null) {
this.OutputConfig = new EditMediaOutputConfig(source.OutputConfig);
}
if (source.TaskNotifyConfig != null) {
this.TaskNotifyConfig = new TaskNotifyConfig(source.TaskNotifyConfig);
}
if (source.TasksPriority != null) {
this.TasksPriority = new Long(source.TasksPriority);
}
if (source.SessionId != null) {
this.SessionId = new String(source.SessionId);
}
if (source.SessionContext != null) {
this.SessionContext = new String(source.SessionContext);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamArrayObj(map, prefix + "FileInfos.", this.FileInfos);
this.setParamObj(map, prefix + "OutputStorage.", this.OutputStorage);
this.setParamSimple(map, prefix + "OutputObjectPath", this.OutputObjectPath);
this.setParamObj(map, prefix + "OutputConfig.", this.OutputConfig);
this.setParamObj(map, prefix + "TaskNotifyConfig.", this.TaskNotifyConfig);
this.setParamSimple(map, prefix + "TasksPriority", this.TasksPriority);
this.setParamSimple(map, prefix + "SessionId", this.SessionId);
this.setParamSimple(map, prefix + "SessionContext", this.SessionContext);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy