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

src.main.java.io.agora.rtc.SrcInfo 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 SrcInfo {
    public SrcInfo() {
    }

    public SrcInfo(int bitrateInKbps, java.lang.String name) {
        this.bitrateInKbps = bitrateInKbps;
        this.name = name;
    }

    private int bitrateInKbps;

    public int getBitrateInKbps() {
        return this.bitrateInKbps;
    }

    public void setBitrateInKbps(int bitrateInKbps) {
        this.bitrateInKbps = bitrateInKbps;
    }

    private java.lang.String name;

    public java.lang.String getName() {
        return this.name;
    }

    public void setName(java.lang.String name) {
        this.name = name;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy