com.aliyun.videoenhan20200320.models.ConvertHdrVideoRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of videoenhan20200320 Show documentation
Show all versions of videoenhan20200320 Show documentation
Aliyun VIDEOENHAN for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.videoenhan20200320.models;
import com.aliyun.tea.*;
public class ConvertHdrVideoRequest extends TeaModel {
@NameInMap("Bitrate")
public Integer bitrate;
@NameInMap("HDRFormat")
public String HDRFormat;
@NameInMap("MaxIlluminance")
public Integer maxIlluminance;
@NameInMap("VideoURL")
public String videoURL;
public static ConvertHdrVideoRequest build(java.util.Map map) throws Exception {
ConvertHdrVideoRequest self = new ConvertHdrVideoRequest();
return TeaModel.build(map, self);
}
public ConvertHdrVideoRequest setBitrate(Integer bitrate) {
this.bitrate = bitrate;
return this;
}
public Integer getBitrate() {
return this.bitrate;
}
public ConvertHdrVideoRequest setHDRFormat(String HDRFormat) {
this.HDRFormat = HDRFormat;
return this;
}
public String getHDRFormat() {
return this.HDRFormat;
}
public ConvertHdrVideoRequest setMaxIlluminance(Integer maxIlluminance) {
this.maxIlluminance = maxIlluminance;
return this;
}
public Integer getMaxIlluminance() {
return this.maxIlluminance;
}
public ConvertHdrVideoRequest setVideoURL(String videoURL) {
this.videoURL = videoURL;
return this;
}
public String getVideoURL() {
return this.videoURL;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy