com.tencentcloudapi.vod.v20180717.models.ProcessMediaByUrlRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-vod Show documentation
Show all versions of tencentcloud-sdk-java-vod Show documentation
Tencent Cloud Open 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.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class ProcessMediaByUrlRequest extends AbstractModel{
/**
* API 已经不再维护。推荐使用的替代 API 请参考接口描述。
*/
@SerializedName("InputInfo")
@Expose
private MediaInputInfo InputInfo;
/**
* 输出文件 COS 路径信息。
*/
@SerializedName("OutputInfo")
@Expose
private MediaOutputInfo OutputInfo;
/**
* 视频内容审核类型任务参数。
*/
@SerializedName("AiContentReviewTask")
@Expose
private AiContentReviewTaskInput AiContentReviewTask;
/**
* 视频内容分析类型任务参数。
*/
@SerializedName("AiAnalysisTask")
@Expose
private AiAnalysisTaskInput AiAnalysisTask;
/**
* 视频内容识别类型任务参数。
*/
@SerializedName("AiRecognitionTask")
@Expose
private AiRecognitionTaskInput AiRecognitionTask;
/**
* 任务流的优先级,数值越大优先级越高,取值范围是 -10 到 10,不填代表 0。
*/
@SerializedName("TasksPriority")
@Expose
private Long TasksPriority;
/**
* 任务流状态变更通知模式,可取值有 Finish,Change 和 None,不填代表 Finish。
*/
@SerializedName("TasksNotifyMode")
@Expose
private String TasksNotifyMode;
/**
* 来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长 1000 个字符。
*/
@SerializedName("SessionContext")
@Expose
private String SessionContext;
/**
* 用于去重的识别码,如果三天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长 50 个字符,不带或者带空字符串表示不做去重。
*/
@SerializedName("SessionId")
@Expose
private String SessionId;
/**
* 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
*/
@SerializedName("SubAppId")
@Expose
private Long SubAppId;
/**
* Get API 已经不再维护。推荐使用的替代 API 请参考接口描述。
* @return InputInfo API 已经不再维护。推荐使用的替代 API 请参考接口描述。
*/
public MediaInputInfo getInputInfo() {
return this.InputInfo;
}
/**
* Set API 已经不再维护。推荐使用的替代 API 请参考接口描述。
* @param InputInfo API 已经不再维护。推荐使用的替代 API 请参考接口描述。
*/
public void setInputInfo(MediaInputInfo InputInfo) {
this.InputInfo = InputInfo;
}
/**
* Get 输出文件 COS 路径信息。
* @return OutputInfo 输出文件 COS 路径信息。
*/
public MediaOutputInfo getOutputInfo() {
return this.OutputInfo;
}
/**
* Set 输出文件 COS 路径信息。
* @param OutputInfo 输出文件 COS 路径信息。
*/
public void setOutputInfo(MediaOutputInfo OutputInfo) {
this.OutputInfo = OutputInfo;
}
/**
* Get 视频内容审核类型任务参数。
* @return AiContentReviewTask 视频内容审核类型任务参数。
*/
public AiContentReviewTaskInput getAiContentReviewTask() {
return this.AiContentReviewTask;
}
/**
* Set 视频内容审核类型任务参数。
* @param AiContentReviewTask 视频内容审核类型任务参数。
*/
public void setAiContentReviewTask(AiContentReviewTaskInput AiContentReviewTask) {
this.AiContentReviewTask = AiContentReviewTask;
}
/**
* Get 视频内容分析类型任务参数。
* @return AiAnalysisTask 视频内容分析类型任务参数。
*/
public AiAnalysisTaskInput getAiAnalysisTask() {
return this.AiAnalysisTask;
}
/**
* Set 视频内容分析类型任务参数。
* @param AiAnalysisTask 视频内容分析类型任务参数。
*/
public void setAiAnalysisTask(AiAnalysisTaskInput AiAnalysisTask) {
this.AiAnalysisTask = AiAnalysisTask;
}
/**
* Get 视频内容识别类型任务参数。
* @return AiRecognitionTask 视频内容识别类型任务参数。
*/
public AiRecognitionTaskInput getAiRecognitionTask() {
return this.AiRecognitionTask;
}
/**
* Set 视频内容识别类型任务参数。
* @param AiRecognitionTask 视频内容识别类型任务参数。
*/
public void setAiRecognitionTask(AiRecognitionTaskInput AiRecognitionTask) {
this.AiRecognitionTask = AiRecognitionTask;
}
/**
* 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 任务流状态变更通知模式,可取值有 Finish,Change 和 None,不填代表 Finish。
* @return TasksNotifyMode 任务流状态变更通知模式,可取值有 Finish,Change 和 None,不填代表 Finish。
*/
public String getTasksNotifyMode() {
return this.TasksNotifyMode;
}
/**
* Set 任务流状态变更通知模式,可取值有 Finish,Change 和 None,不填代表 Finish。
* @param TasksNotifyMode 任务流状态变更通知模式,可取值有 Finish,Change 和 None,不填代表 Finish。
*/
public void setTasksNotifyMode(String TasksNotifyMode) {
this.TasksNotifyMode = TasksNotifyMode;
}
/**
* Get 来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长 1000 个字符。
* @return SessionContext 来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长 1000 个字符。
*/
public String getSessionContext() {
return this.SessionContext;
}
/**
* Set 来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长 1000 个字符。
* @param SessionContext 来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长 1000 个字符。
*/
public void setSessionContext(String SessionContext) {
this.SessionContext = SessionContext;
}
/**
* 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 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
* @return SubAppId 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
*/
public Long getSubAppId() {
return this.SubAppId;
}
/**
* Set 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
* @param SubAppId 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
*/
public void setSubAppId(Long SubAppId) {
this.SubAppId = SubAppId;
}
public ProcessMediaByUrlRequest() {
}
/**
* 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 ProcessMediaByUrlRequest(ProcessMediaByUrlRequest source) {
if (source.InputInfo != null) {
this.InputInfo = new MediaInputInfo(source.InputInfo);
}
if (source.OutputInfo != null) {
this.OutputInfo = new MediaOutputInfo(source.OutputInfo);
}
if (source.AiContentReviewTask != null) {
this.AiContentReviewTask = new AiContentReviewTaskInput(source.AiContentReviewTask);
}
if (source.AiAnalysisTask != null) {
this.AiAnalysisTask = new AiAnalysisTaskInput(source.AiAnalysisTask);
}
if (source.AiRecognitionTask != null) {
this.AiRecognitionTask = new AiRecognitionTaskInput(source.AiRecognitionTask);
}
if (source.TasksPriority != null) {
this.TasksPriority = new Long(source.TasksPriority);
}
if (source.TasksNotifyMode != null) {
this.TasksNotifyMode = new String(source.TasksNotifyMode);
}
if (source.SessionContext != null) {
this.SessionContext = new String(source.SessionContext);
}
if (source.SessionId != null) {
this.SessionId = new String(source.SessionId);
}
if (source.SubAppId != null) {
this.SubAppId = new Long(source.SubAppId);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamObj(map, prefix + "InputInfo.", this.InputInfo);
this.setParamObj(map, prefix + "OutputInfo.", this.OutputInfo);
this.setParamObj(map, prefix + "AiContentReviewTask.", this.AiContentReviewTask);
this.setParamObj(map, prefix + "AiAnalysisTask.", this.AiAnalysisTask);
this.setParamObj(map, prefix + "AiRecognitionTask.", this.AiRecognitionTask);
this.setParamSimple(map, prefix + "TasksPriority", this.TasksPriority);
this.setParamSimple(map, prefix + "TasksNotifyMode", this.TasksNotifyMode);
this.setParamSimple(map, prefix + "SessionContext", this.SessionContext);
this.setParamSimple(map, prefix + "SessionId", this.SessionId);
this.setParamSimple(map, prefix + "SubAppId", this.SubAppId);
}
}