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

com.ringcentral.definitions.UserVideoConfiguration Maven / Gradle / Ivy

There is a newer version: 3.2.3
Show newest version
package com.ringcentral.definitions;


public class UserVideoConfiguration {
    /**
     * Video provider of the user
     * Enum: RCMeetings, RCVideo, None
     */
    public String provider;
    /**
     * Specifies if the user is 'paid' (has meeting license) or 'free' (w/o meeting license)
     * Enum: Paid, Free
     */
    public String userLicenseType;

    public UserVideoConfiguration provider(String provider) {
        this.provider = provider;
        return this;
    }

    public UserVideoConfiguration userLicenseType(String userLicenseType) {
        this.userLicenseType = userLicenseType;
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy