src.main.java.io.agora.rtc.AudioVolumeInfo Maven / Gradle / Ivy
//
//
// 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 AudioVolumeInfo {
public AudioVolumeInfo() {
}
public AudioVolumeInfo(java.lang.String userId, int volume, int vad, double voicePitch) {
this.userId = userId;
this.volume = volume;
this.vad = vad;
this.voicePitch = voicePitch;
}
private java.lang.String userId;
public java.lang.String getUserId() {
return this.userId;
}
public void setUserId(java.lang.String userId) {
this.userId = userId;
}
private int volume;
public int getVolume() {
return this.volume;
}
public void setVolume(int volume) {
this.volume = volume;
}
private int vad;
public int getVad() {
return this.vad;
}
public void setVad(int vad) {
this.vad = vad;
}
private double voicePitch;
public double getVoicePitch() {
return this.voicePitch;
}
public void setVoicePitch(double voicePitch) {
this.voicePitch = voicePitch;
}
@Override
public String toString() {
return "AudioVolumeInfo{" +
"userId='" + userId + '\'' +
", volume=" + volume +
", vad=" + vad +
", voicePitch=" + voicePitch +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy