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

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

    public TranscodingUser(int uid, java.lang.String userId, int x, int y, int width, int height, int zOrder,
            double alpha, int audioChannel) {
        this.uid = uid;
        this.userId = userId;
        this.x = x;
        this.y = y;
        this.width = width;
        this.height = height;
        this.zOrder = zOrder;
        this.alpha = alpha;
        this.audioChannel = audioChannel;
    }

    private int uid;

    public int getUid() {
        return this.uid;
    }

    public void setUid(int uid) {
        this.uid = uid;
    }

    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 x;

    public int getX() {
        return this.x;
    }

    public void setX(int x) {
        this.x = x;
    }

    private int y;

    public int getY() {
        return this.y;
    }

    public void setY(int y) {
        this.y = y;
    }

    private int width;

    public int getWidth() {
        return this.width;
    }

    public void setWidth(int width) {
        this.width = width;
    }

    private int height;

    public int getHeight() {
        return this.height;
    }

    public void setHeight(int height) {
        this.height = height;
    }

    private int zOrder;

    public int getZOrder() {
        return this.zOrder;
    }

    public void setZOrder(int zOrder) {
        this.zOrder = zOrder;
    }

    private double alpha;

    public double getAlpha() {
        return this.alpha;
    }

    public void setAlpha(double alpha) {
        this.alpha = alpha;
    }

    private int audioChannel;

    public int getAudioChannel() {
        return this.audioChannel;
    }

    public void setAudioChannel(int audioChannel) {
        this.audioChannel = audioChannel;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy