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

com.aliyun.videoenhan20200320.models.SuperResolveVideoRequest Maven / Gradle / Ivy

Go to download

Aliyun VIDEOENHAN for Java Copyright (C) Alibaba Cloud Computing All rights reserved. 版权所有 (C)阿里云计算有限公司 http://www.aliyun.com

There is a newer version: 2.0.21
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.videoenhan20200320.models;

import com.aliyun.tea.*;

public class SuperResolveVideoRequest extends TeaModel {
    @NameInMap("BitRate")
    public Integer bitRate;

    @NameInMap("VideoUrl")
    public String videoUrl;

    public static SuperResolveVideoRequest build(java.util.Map map) throws Exception {
        SuperResolveVideoRequest self = new SuperResolveVideoRequest();
        return TeaModel.build(map, self);
    }

    public SuperResolveVideoRequest setBitRate(Integer bitRate) {
        this.bitRate = bitRate;
        return this;
    }
    public Integer getBitRate() {
        return this.bitRate;
    }

    public SuperResolveVideoRequest setVideoUrl(String videoUrl) {
        this.videoUrl = videoUrl;
        return this;
    }
    public String getVideoUrl() {
        return this.videoUrl;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy