src.main.java.io.agora.rtc.PeerDownlinkInfo Maven / Gradle / Ivy
The newest version!
//
//
// Agora Media SDK
// Copyright (c) 2020 Agora IO. All rights reserved.
// This file is generated by tool, do NOT modify it
//
//
package io.agora.rtc;
public class PeerDownlinkInfo {
public PeerDownlinkInfo() {
}
public PeerDownlinkInfo(java.lang.String uid, int streamType, int currentDownscaleLevel, int expectedBitrateBps) {
this.uid = uid;
this.streamType = streamType;
this.currentDownscaleLevel = currentDownscaleLevel;
this.expectedBitrateBps = expectedBitrateBps;
}
private java.lang.String uid;
public java.lang.String getUid() {
return this.uid;
}
public void setUid(java.lang.String uid) {
this.uid = uid;
}
private int streamType;
public int getStreamType() {
return this.streamType;
}
public void setStreamType(int streamType) {
this.streamType = streamType;
}
private int currentDownscaleLevel;
public int getCurrentDownscaleLevel() {
return this.currentDownscaleLevel;
}
public void setCurrentDownscaleLevel(int currentDownscaleLevel) {
this.currentDownscaleLevel = currentDownscaleLevel;
}
private int expectedBitrateBps;
public int getExpectedBitrateBps() {
return this.expectedBitrateBps;
}
public void setExpectedBitrateBps(int expectedBitrateBps) {
this.expectedBitrateBps = expectedBitrateBps;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy