![JAR search and dependency download from the Maven repository](/logo.png)
com.logmein.gotomeeting.api.model.MeetingById Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gotomeeting-api Show documentation
Show all versions of gotomeeting-api Show documentation
Java SDK for the GoToMeeting REST API
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 java.util.ArrayList;
import java.util.Date;
import java.util.List;
import com.logmein.gotomeeting.api.common.JsonUtil;
/**
* Describes a given meeting.
*/
public class MeetingById {
/* DEPRECATED. Returns an empty string '' */
@Deprecated
private Date createTime = 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 ending time of the meeting */
private Date endTime = null;
/* Audio options of the meeting */
private String conferenceCallInfo = null;
/* The meeting starting time */
private Date startTime = null;
/* The duration of the meeting in minutes */
private Integer duration = null;
/* The maximum number of participants allowed at the meeting */
private Integer maxParticipants = null;
/* The meeting ID */
private Long meetingId = null;
/* The meeting ID. Field retained for backwards compatibility reasons */
private Long meetingKey = null;
/* The meeting type */
private MeetingType meetingType = null;
/* The meeting ID. Field retained for backwards compatibility reasons */
private Long uniqueMeetingId = null;
/* The co-organizer keys of users that also can host the meeting. */
private List coorganizerKeys = new ArrayList();
/**
* @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 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 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 Audio options of the meeting
*/
public String getConferenceCallInfo() {
return conferenceCallInfo;
}
/**
* @param conferenceCallInfo Audio options of the meeting
*/
public void setConferenceCallInfo(String conferenceCallInfo) {
this.conferenceCallInfo = conferenceCallInfo;
}
/**
* @return The meeting starting time
*/
public Date getStartTime() {
return startTime;
}
/**
* @param startTime The meeting starting time
*/
public void setStartTime(Date startTime) {
this.startTime = startTime;
}
/**
* @return The duration of the meeting in minutes
*/
public Integer getDuration() {
return duration;
}
/**
* @param duration The duration of the meeting in minutes
*/
public void setDuration(Integer duration) {
this.duration = duration;
}
/**
* @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 The meeting ID
*/
public Long getMeetingId() {
return meetingId;
}
/**
* @param meetingId The meeting ID
*/
public void setMeetingId(Long meetingId) {
this.meetingId = meetingId;
}
/**
* @return The meeting ID. Field retained for backwards compatibility reasons
*/
public Long getMeetingKey() {
return meetingKey;
}
/**
* @param meetingKey The meeting ID. Field retained for backwards compatibility reasons
*/
public void setMeetingKey(Long meetingKey) {
this.meetingKey = meetingKey;
}
/**
* @return The meeting type
*/
public MeetingType getMeetingType() {
return meetingType;
}
/**
* @param meetingType The meeting type
*/
public void setMeetingType(MeetingType meetingType) {
this.meetingType = meetingType;
}
/**
* @return The meeting ID. Field retained for backwards compatibility reasons
*/
public Long getUniqueMeetingId() {
return uniqueMeetingId;
}
/**
* @param uniqueMeetingId The meeting ID. Field retained for backwards compatibility reasons
*/
public void setUniqueMeetingId(Long uniqueMeetingId) {
this.uniqueMeetingId = uniqueMeetingId;
}
/**
* @return The co-organizer keys of users that also can host the meeting.
*/
public List getCoorganizerKeys() {
return coorganizerKeys;
}
/**
* @param coorganizerKeys The co-organizer keys of users that also can host the meeting.
*/
public void setCoorganizerKeys(List coorganizerKeys) {
this.coorganizerKeys = coorganizerKeys;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class MeetingById {\n");
String createTimeString = JsonUtil.Stringify(createTime);
if (createTimeString != null && !createTimeString.isEmpty())
sb.append(String.format(" createTime: %s\n", createTimeString));
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 endTimeString = JsonUtil.Stringify(endTime);
if (endTimeString != null && !endTimeString.isEmpty())
sb.append(String.format(" endTime: %s\n", endTimeString));
String conferenceCallInfoString = JsonUtil.Stringify(conferenceCallInfo);
if (conferenceCallInfoString != null && !conferenceCallInfoString.isEmpty())
sb.append(String.format(" conferenceCallInfo: %s\n", conferenceCallInfoString));
String startTimeString = JsonUtil.Stringify(startTime);
if (startTimeString != null && !startTimeString.isEmpty())
sb.append(String.format(" startTime: %s\n", startTimeString));
String durationString = JsonUtil.Stringify(duration);
if (durationString != null && !durationString.isEmpty())
sb.append(String.format(" duration: %s\n", durationString));
String maxParticipantsString = JsonUtil.Stringify(maxParticipants);
if (maxParticipantsString != null && !maxParticipantsString.isEmpty())
sb.append(String.format(" maxParticipants: %s\n", maxParticipantsString));
String meetingIdString = JsonUtil.Stringify(meetingId);
if (meetingIdString != null && !meetingIdString.isEmpty())
sb.append(String.format(" meetingId: %s\n", meetingIdString));
String meetingKeyString = JsonUtil.Stringify(meetingKey);
if (meetingKeyString != null && !meetingKeyString.isEmpty())
sb.append(String.format(" meetingKey: %s\n", meetingKeyString));
String meetingTypeString = JsonUtil.Stringify(meetingType);
if (meetingTypeString != null && !meetingTypeString.isEmpty())
sb.append(String.format(" meetingType: %s\n", meetingTypeString));
String uniqueMeetingIdString = JsonUtil.Stringify(uniqueMeetingId);
if (uniqueMeetingIdString != null && !uniqueMeetingIdString.isEmpty())
sb.append(String.format(" uniqueMeetingId: %s\n", uniqueMeetingIdString));
String coorganizerKeysString = JsonUtil.Stringify(coorganizerKeys);
if (coorganizerKeysString != null && !coorganizerKeysString.isEmpty())
sb.append(String.format(" coorganizerKeys: %s\n", coorganizerKeysString));
sb.append("}\n");
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy