com.aliyun.pds20220301.models.VideoMediaAudioStream Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pds20220301 Show documentation
Show all versions of pds20220301 Show documentation
Alibaba Cloud pds (20220301) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.pds20220301.models;
import com.aliyun.tea.*;
public class VideoMediaAudioStream extends TeaModel {
@NameInMap("bit_rate")
public String bitRate;
@NameInMap("code_name")
public String codeName;
@NameInMap("duration")
public String duration;
public static VideoMediaAudioStream build(java.util.Map map) throws Exception {
VideoMediaAudioStream self = new VideoMediaAudioStream();
return TeaModel.build(map, self);
}
public VideoMediaAudioStream setBitRate(String bitRate) {
this.bitRate = bitRate;
return this;
}
public String getBitRate() {
return this.bitRate;
}
public VideoMediaAudioStream setCodeName(String codeName) {
this.codeName = codeName;
return this;
}
public String getCodeName() {
return this.codeName;
}
public VideoMediaAudioStream setDuration(String duration) {
this.duration = duration;
return this;
}
public String getDuration() {
return this.duration;
}
}