com.tencentcloudapi.vod.v20180717.models.MediaMiniProgramReviewInfoItem 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.tencentcloudapi.common.SSEResponseModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class MediaMiniProgramReviewInfoItem extends AbstractModel {
/**
* 模板id。小程序视频发布的视频所对应的转码模板ID,为0代表原始视频。
*/
@SerializedName("Definition")
@Expose
private Long Definition;
/**
* 视频元信息。
*/
@SerializedName("MetaData")
@Expose
private MediaMetaData MetaData;
/**
* 小程序音视频审核视频播放地址。
*/
@SerializedName("Url")
@Expose
private String Url;
/**
* 小程序视频发布状态:
Pass:成功。
Rejected:未通过。
*/
@SerializedName("ReviewResult")
@Expose
private String ReviewResult;
/**
* 小程序音视频审核元素。
*/
@SerializedName("ReviewSummary")
@Expose
private MediaMiniProgramReviewElem [] ReviewSummary;
/**
* Get 模板id。小程序视频发布的视频所对应的转码模板ID,为0代表原始视频。
* @return Definition 模板id。小程序视频发布的视频所对应的转码模板ID,为0代表原始视频。
*/
public Long getDefinition() {
return this.Definition;
}
/**
* Set 模板id。小程序视频发布的视频所对应的转码模板ID,为0代表原始视频。
* @param Definition 模板id。小程序视频发布的视频所对应的转码模板ID,为0代表原始视频。
*/
public void setDefinition(Long Definition) {
this.Definition = Definition;
}
/**
* Get 视频元信息。
* @return MetaData 视频元信息。
*/
public MediaMetaData getMetaData() {
return this.MetaData;
}
/**
* Set 视频元信息。
* @param MetaData 视频元信息。
*/
public void setMetaData(MediaMetaData MetaData) {
this.MetaData = MetaData;
}
/**
* Get 小程序音视频审核视频播放地址。
* @return Url 小程序音视频审核视频播放地址。
*/
public String getUrl() {
return this.Url;
}
/**
* Set 小程序音视频审核视频播放地址。
* @param Url 小程序音视频审核视频播放地址。
*/
public void setUrl(String Url) {
this.Url = Url;
}
/**
* Get 小程序视频发布状态:
Pass:成功。
Rejected:未通过。
* @return ReviewResult 小程序视频发布状态:
Pass:成功。
Rejected:未通过。
*/
public String getReviewResult() {
return this.ReviewResult;
}
/**
* Set 小程序视频发布状态:
Pass:成功。
Rejected:未通过。
* @param ReviewResult 小程序视频发布状态:
Pass:成功。
Rejected:未通过。
*/
public void setReviewResult(String ReviewResult) {
this.ReviewResult = ReviewResult;
}
/**
* Get 小程序音视频审核元素。
* @return ReviewSummary 小程序音视频审核元素。
*/
public MediaMiniProgramReviewElem [] getReviewSummary() {
return this.ReviewSummary;
}
/**
* Set 小程序音视频审核元素。
* @param ReviewSummary 小程序音视频审核元素。
*/
public void setReviewSummary(MediaMiniProgramReviewElem [] ReviewSummary) {
this.ReviewSummary = ReviewSummary;
}
public MediaMiniProgramReviewInfoItem() {
}
/**
* 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 MediaMiniProgramReviewInfoItem(MediaMiniProgramReviewInfoItem source) {
if (source.Definition != null) {
this.Definition = new Long(source.Definition);
}
if (source.MetaData != null) {
this.MetaData = new MediaMetaData(source.MetaData);
}
if (source.Url != null) {
this.Url = new String(source.Url);
}
if (source.ReviewResult != null) {
this.ReviewResult = new String(source.ReviewResult);
}
if (source.ReviewSummary != null) {
this.ReviewSummary = new MediaMiniProgramReviewElem[source.ReviewSummary.length];
for (int i = 0; i < source.ReviewSummary.length; i++) {
this.ReviewSummary[i] = new MediaMiniProgramReviewElem(source.ReviewSummary[i]);
}
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "Definition", this.Definition);
this.setParamObj(map, prefix + "MetaData.", this.MetaData);
this.setParamSimple(map, prefix + "Url", this.Url);
this.setParamSimple(map, prefix + "ReviewResult", this.ReviewResult);
this.setParamArrayObj(map, prefix + "ReviewSummary.", this.ReviewSummary);
}
}