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

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

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


public class WebinarBaseModel {
    /**
     * Webinar title
     * Example: All-Hands Webinar
     */
    public String title;
    /**
     * User-friendly description of the Webinar
     * Example: Quarterly All-hands event to present recent news about our company to employees
     */
    public String description;
    /**
     *
     */
    public WcsWebinarSettingsModel settings;

    public WebinarBaseModel title(String title) {
        this.title = title;
        return this;
    }

    public WebinarBaseModel description(String description) {
        this.description = description;
        return this;
    }

    public WebinarBaseModel settings(WcsWebinarSettingsModel settings) {
        this.settings = settings;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy