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

com.logmein.gotomeeting.api.model.MeetingByOrganizer Maven / Gradle / Ivy

The newest version!
/*
 * © 2017 LogMeIn, Inc. All Rights Reserved.
 * All rights reserved.
 * 
 * This software is distributed under the terms and conditions of the
 * LogMeIn SDK License Agreement. Please see file LICENSE for details.
 * 
 * Auto-generated file.
 */


package com.logmein.gotomeeting.api.model;

import com.logmein.gotomeeting.api.model.MeetingStatus;
import com.logmein.gotomeeting.api.model.MeetingType;
import java.util.Date;

import com.logmein.gotomeeting.api.common.JsonUtil;

/**
 * Describes a meeting scheduled by a specified organizer
 */
public class MeetingByOrganizer {

    /* The starting time of the meeting */
    private Date startTime = null;

    /* DEPRECATED. Returns an empty string '' */
    @Deprecated
    private Date createTime = null;

    /* The meeting ID */
    private Long meetingid = null;

    /* The maximum number of participants allowed at the meeting */
    private Integer maxParticipants = null;

    /* Indicates whether a password is required to join the meeting */
    private Boolean passwordRequired = null;

    /* The meeting status, i.e whether the meeting is running or not */
    private MeetingStatus status = null;

    /* The subject of the meeting */
    private String subject = null;

    /* The meeting type */
    private MeetingType meetingType = null;

    /* The ending time of the meeting */
    private Date endTime = null;

    /* A unique ID for the meeting */
    private Long uniqueMeetingId = null;

    /* Audio options for the meeting */
    private String conferenceCallInfo = null;

    /**
     * @return The starting time of the meeting
     */
    public Date getStartTime() {
        return startTime;
    }

    /**
     * @param startTime The starting time of the meeting
     */
    public void setStartTime(Date startTime) {
        this.startTime = startTime;
    }

    /**
     * @return DEPRECATED. Returns an empty string ''
     */
    @Deprecated
    public Date getCreateTime() {
        return createTime;
    }

    /**
     * @param createTime DEPRECATED. Returns an empty string ''
     */
    @Deprecated
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }

    /**
     * @return The meeting ID
     */
    public Long getMeetingid() {
        return meetingid;
    }

    /**
     * @param meetingid The meeting ID
     */
    public void setMeetingid(Long meetingid) {
        this.meetingid = meetingid;
    }

    /**
     * @return The maximum number of participants allowed at the meeting
     */
    public Integer getMaxParticipants() {
        return maxParticipants;
    }

    /**
     * @param maxParticipants The maximum number of participants allowed at the meeting
     */
    public void setMaxParticipants(Integer maxParticipants) {
        this.maxParticipants = maxParticipants;
    }

    /**
     * @return Indicates whether a password is required to join the meeting
     */
    public Boolean getPasswordRequired() {
        return passwordRequired;
    }

    /**
     * @param passwordRequired Indicates whether a password is required to join the meeting
     */
    public void setPasswordRequired(Boolean passwordRequired) {
        this.passwordRequired = passwordRequired;
    }

    /**
     * @return The meeting status, i.e whether the meeting is running or not
     */
    public MeetingStatus getStatus() {
        return status;
    }

    /**
     * @param status The meeting status, i.e whether the meeting is running or not
     */
    public void setStatus(MeetingStatus status) {
        this.status = status;
    }

    /**
     * @return The subject of the meeting
     */
    public String getSubject() {
        return subject;
    }

    /**
     * @param subject The subject of the meeting
     */
    public void setSubject(String subject) {
        this.subject = subject;
    }

    /**
     * @return The meeting type
     */
    public MeetingType getMeetingType() {
        return meetingType;
    }

    /**
     * @param meetingType The meeting type
     */
    public void setMeetingType(MeetingType meetingType) {
        this.meetingType = meetingType;
    }

    /**
     * @return The ending time of the meeting
     */
    public Date getEndTime() {
        return endTime;
    }

    /**
     * @param endTime The ending time of the meeting
     */
    public void setEndTime(Date endTime) {
        this.endTime = endTime;
    }

    /**
     * @return A unique ID for the meeting
     */
    public Long getUniqueMeetingId() {
        return uniqueMeetingId;
    }

    /**
     * @param uniqueMeetingId A unique ID for the meeting
     */
    public void setUniqueMeetingId(Long uniqueMeetingId) {
        this.uniqueMeetingId = uniqueMeetingId;
    }

    /**
     * @return Audio options for the meeting
     */
    public String getConferenceCallInfo() {
        return conferenceCallInfo;
    }

    /**
     * @param conferenceCallInfo Audio options for the meeting
     */
    public void setConferenceCallInfo(String conferenceCallInfo) {
        this.conferenceCallInfo = conferenceCallInfo;
    }

    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append("class MeetingByOrganizer {\n");
        String startTimeString = JsonUtil.Stringify(startTime);
        if (startTimeString != null && !startTimeString.isEmpty())
            sb.append(String.format("  startTime: %s\n", startTimeString));
        String createTimeString = JsonUtil.Stringify(createTime);
        if (createTimeString != null && !createTimeString.isEmpty())
            sb.append(String.format("  createTime: %s\n", createTimeString));
        String meetingidString = JsonUtil.Stringify(meetingid);
        if (meetingidString != null && !meetingidString.isEmpty())
            sb.append(String.format("  meetingid: %s\n", meetingidString));
        String maxParticipantsString = JsonUtil.Stringify(maxParticipants);
        if (maxParticipantsString != null && !maxParticipantsString.isEmpty())
            sb.append(String.format("  maxParticipants: %s\n", maxParticipantsString));
        String passwordRequiredString = JsonUtil.Stringify(passwordRequired);
        if (passwordRequiredString != null && !passwordRequiredString.isEmpty())
            sb.append(String.format("  passwordRequired: %s\n", passwordRequiredString));
        String statusString = JsonUtil.Stringify(status);
        if (statusString != null && !statusString.isEmpty())
            sb.append(String.format("  status: %s\n", statusString));
        String subjectString = JsonUtil.Stringify(subject);
        if (subjectString != null && !subjectString.isEmpty())
            sb.append(String.format("  subject: %s\n", subjectString));
        String meetingTypeString = JsonUtil.Stringify(meetingType);
        if (meetingTypeString != null && !meetingTypeString.isEmpty())
            sb.append(String.format("  meetingType: %s\n", meetingTypeString));
        String endTimeString = JsonUtil.Stringify(endTime);
        if (endTimeString != null && !endTimeString.isEmpty())
            sb.append(String.format("  endTime: %s\n", endTimeString));
        String uniqueMeetingIdString = JsonUtil.Stringify(uniqueMeetingId);
        if (uniqueMeetingIdString != null && !uniqueMeetingIdString.isEmpty())
            sb.append(String.format("  uniqueMeetingId: %s\n", uniqueMeetingIdString));
        String conferenceCallInfoString = JsonUtil.Stringify(conferenceCallInfo);
        if (conferenceCallInfoString != null && !conferenceCallInfoString.isEmpty())
            sb.append(String.format("  conferenceCallInfo: %s\n", conferenceCallInfoString));
        sb.append("}\n");
        return sb.toString();
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy