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

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

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


public class MeetingInfo {
    /**
     * Unique identifier of a meeting instance
     */
    public String uuid;
    /**
     *
     */
    public String id;
    /**
     *
     */
    public String topic;
    /**
     * Format: date-time
     */
    public String startTime;

    public MeetingInfo uuid(String uuid) {
        this.uuid = uuid;
        return this;
    }

    public MeetingInfo id(String id) {
        this.id = id;
        return this;
    }

    public MeetingInfo topic(String topic) {
        this.topic = topic;
        return this;
    }

    public MeetingInfo startTime(String startTime) {
        this.startTime = startTime;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy