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

com.tencentcloudapi.vod.v20180717.models.AttachMediaSubtitlesRequest 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.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 AttachMediaSubtitlesRequest extends AbstractModel{

    /**
    * Unique ID of the media file
    */
    @SerializedName("FileId")
    @Expose
    private String FileId;

    /**
    * Operation. Valid values:
  • `Attach`: associates subtitles.
  • `Detach`: disassociates subtitles.
  • */ @SerializedName("Operation") @Expose private String Operation; /** * [Adaptive bitrate streaming template ID](https://intl.cloud.tencent.com/document/product/266/34071?from_cn_redirect=1#zsy) */ @SerializedName("AdaptiveDynamicStreamingDefinition") @Expose private Long AdaptiveDynamicStreamingDefinition; /** * Unique IDs of the subtitles */ @SerializedName("SubtitleIds") @Expose private String [] SubtitleIds; /** * The VOD [subapplication](https://intl.cloud.tencent.com/document/product/266/14574?from_cn_redirect=1) ID. If you need to access a resource in a subapplication, set this parameter to the subapplication ID; otherwise, leave it empty. */ @SerializedName("SubAppId") @Expose private Long SubAppId; /** * Get Unique ID of the media file * @return FileId Unique ID of the media file */ public String getFileId() { return this.FileId; } /** * Set Unique ID of the media file * @param FileId Unique ID of the media file */ public void setFileId(String FileId) { this.FileId = FileId; } /** * Get Operation. Valid values:
  • `Attach`: associates subtitles.
  • `Detach`: disassociates subtitles.
  • * @return Operation Operation. Valid values:
  • `Attach`: associates subtitles.
  • `Detach`: disassociates subtitles.
  • */ public String getOperation() { return this.Operation; } /** * Set Operation. Valid values:
  • `Attach`: associates subtitles.
  • `Detach`: disassociates subtitles.
  • * @param Operation Operation. Valid values:
  • `Attach`: associates subtitles.
  • `Detach`: disassociates subtitles.
  • */ public void setOperation(String Operation) { this.Operation = Operation; } /** * Get [Adaptive bitrate streaming template ID](https://intl.cloud.tencent.com/document/product/266/34071?from_cn_redirect=1#zsy) * @return AdaptiveDynamicStreamingDefinition [Adaptive bitrate streaming template ID](https://intl.cloud.tencent.com/document/product/266/34071?from_cn_redirect=1#zsy) */ public Long getAdaptiveDynamicStreamingDefinition() { return this.AdaptiveDynamicStreamingDefinition; } /** * Set [Adaptive bitrate streaming template ID](https://intl.cloud.tencent.com/document/product/266/34071?from_cn_redirect=1#zsy) * @param AdaptiveDynamicStreamingDefinition [Adaptive bitrate streaming template ID](https://intl.cloud.tencent.com/document/product/266/34071?from_cn_redirect=1#zsy) */ public void setAdaptiveDynamicStreamingDefinition(Long AdaptiveDynamicStreamingDefinition) { this.AdaptiveDynamicStreamingDefinition = AdaptiveDynamicStreamingDefinition; } /** * Get Unique IDs of the subtitles * @return SubtitleIds Unique IDs of the subtitles */ public String [] getSubtitleIds() { return this.SubtitleIds; } /** * Set Unique IDs of the subtitles * @param SubtitleIds Unique IDs of the subtitles */ public void setSubtitleIds(String [] SubtitleIds) { this.SubtitleIds = SubtitleIds; } /** * Get The VOD [subapplication](https://intl.cloud.tencent.com/document/product/266/14574?from_cn_redirect=1) ID. If you need to access a resource in a subapplication, set this parameter to the subapplication ID; otherwise, leave it empty. * @return SubAppId The VOD [subapplication](https://intl.cloud.tencent.com/document/product/266/14574?from_cn_redirect=1) ID. If you need to access a resource in a subapplication, set this parameter to the subapplication ID; otherwise, leave it empty. */ public Long getSubAppId() { return this.SubAppId; } /** * Set The VOD [subapplication](https://intl.cloud.tencent.com/document/product/266/14574?from_cn_redirect=1) ID. If you need to access a resource in a subapplication, set this parameter to the subapplication ID; otherwise, leave it empty. * @param SubAppId The VOD [subapplication](https://intl.cloud.tencent.com/document/product/266/14574?from_cn_redirect=1) ID. If you need to access a resource in a subapplication, set this parameter to the subapplication ID; otherwise, leave it empty. */ public void setSubAppId(Long SubAppId) { this.SubAppId = SubAppId; } public AttachMediaSubtitlesRequest() { } /** * 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 AttachMediaSubtitlesRequest(AttachMediaSubtitlesRequest source) { if (source.FileId != null) { this.FileId = new String(source.FileId); } if (source.Operation != null) { this.Operation = new String(source.Operation); } if (source.AdaptiveDynamicStreamingDefinition != null) { this.AdaptiveDynamicStreamingDefinition = new Long(source.AdaptiveDynamicStreamingDefinition); } if (source.SubtitleIds != null) { this.SubtitleIds = new String[source.SubtitleIds.length]; for (int i = 0; i < source.SubtitleIds.length; i++) { this.SubtitleIds[i] = new String(source.SubtitleIds[i]); } } 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.setParamSimple(map, prefix + "FileId", this.FileId); this.setParamSimple(map, prefix + "Operation", this.Operation); this.setParamSimple(map, prefix + "AdaptiveDynamicStreamingDefinition", this.AdaptiveDynamicStreamingDefinition); this.setParamArraySimple(map, prefix + "SubtitleIds.", this.SubtitleIds); this.setParamSimple(map, prefix + "SubAppId", this.SubAppId); } }




    © 2015 - 2025 Weber Informatics LLC | Privacy Policy