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

com.tencentcloudapi.ams.v20201229.models.TaskInput Maven / Gradle / Ivy

The 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.ams.v20201229.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 TaskInput extends AbstractModel {

    /**
    * 选填参数,该字段表示您为待检测对象分配的数据ID,传入后可方便您对文件进行标识和管理。
取值:由英文字母(大小写均可)、数字及四个特殊符号(_,-,@,#)组成,**长度不超过64个字符**。 */ @SerializedName("DataId") @Expose private String DataId; /** * 选填参数,该字段表示音频审核任务所对应的任务名称,方便后续查询和管理审核任务。 */ @SerializedName("Name") @Expose private String Name; /** * 必填参数,该字段表示审核文件的访问参数,用于获取审核媒体文件,该参数内包括访问类型和访问地址。 */ @SerializedName("Input") @Expose private StorageInfo Input; /** * Get 选填参数,该字段表示您为待检测对象分配的数据ID,传入后可方便您对文件进行标识和管理。
取值:由英文字母(大小写均可)、数字及四个特殊符号(_,-,@,#)组成,**长度不超过64个字符**。 * @return DataId 选填参数,该字段表示您为待检测对象分配的数据ID,传入后可方便您对文件进行标识和管理。
取值:由英文字母(大小写均可)、数字及四个特殊符号(_,-,@,#)组成,**长度不超过64个字符**。 */ public String getDataId() { return this.DataId; } /** * Set 选填参数,该字段表示您为待检测对象分配的数据ID,传入后可方便您对文件进行标识和管理。
取值:由英文字母(大小写均可)、数字及四个特殊符号(_,-,@,#)组成,**长度不超过64个字符**。 * @param DataId 选填参数,该字段表示您为待检测对象分配的数据ID,传入后可方便您对文件进行标识和管理。
取值:由英文字母(大小写均可)、数字及四个特殊符号(_,-,@,#)组成,**长度不超过64个字符**。 */ public void setDataId(String DataId) { this.DataId = DataId; } /** * Get 选填参数,该字段表示音频审核任务所对应的任务名称,方便后续查询和管理审核任务。 * @return Name 选填参数,该字段表示音频审核任务所对应的任务名称,方便后续查询和管理审核任务。 */ public String getName() { return this.Name; } /** * Set 选填参数,该字段表示音频审核任务所对应的任务名称,方便后续查询和管理审核任务。 * @param Name 选填参数,该字段表示音频审核任务所对应的任务名称,方便后续查询和管理审核任务。 */ public void setName(String Name) { this.Name = Name; } /** * Get 必填参数,该字段表示审核文件的访问参数,用于获取审核媒体文件,该参数内包括访问类型和访问地址。 * @return Input 必填参数,该字段表示审核文件的访问参数,用于获取审核媒体文件,该参数内包括访问类型和访问地址。 */ public StorageInfo getInput() { return this.Input; } /** * Set 必填参数,该字段表示审核文件的访问参数,用于获取审核媒体文件,该参数内包括访问类型和访问地址。 * @param Input 必填参数,该字段表示审核文件的访问参数,用于获取审核媒体文件,该参数内包括访问类型和访问地址。 */ public void setInput(StorageInfo Input) { this.Input = Input; } public TaskInput() { } /** * 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 TaskInput(TaskInput source) { if (source.DataId != null) { this.DataId = new String(source.DataId); } if (source.Name != null) { this.Name = new String(source.Name); } if (source.Input != null) { this.Input = new StorageInfo(source.Input); } } /** * Internal implementation, normal users should not use it. */ public void toMap(HashMap map, String prefix) { this.setParamSimple(map, prefix + "DataId", this.DataId); this.setParamSimple(map, prefix + "Name", this.Name); this.setParamObj(map, prefix + "Input.", this.Input); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy