![JAR search and dependency download from the Maven repository](/logo.png)
com.logmein.gotomeeting.api.model.MeetingScheduled 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 com.logmein.gotomeeting.api.model.MeetingStatus;
import com.logmein.gotomeeting.api.model.MeetingType;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import com.logmein.gotomeeting.api.common.JsonUtil;
/**
* Describes a scheduled meeting.
*/
public class MeetingScheduled {
/* The starting time of the meeting. */
private Date startTime = null;
/* The time the meeting was created. */
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;
/* The meeting ID. Field retained for backwards compatibility reasons. */
private Long uniqueMeetingId = null;
/* Audio options for the meeting. */
private String conferenceCallInfo = null;
/* Co-organizer keys. Co-organizers can start the meeting on the organizers behalf. */
private List coorganizerKeys = new ArrayList();
/**
* @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 The time the meeting was created.
*/
public Date getCreateTime() {
return createTime;
}
/**
* @param createTime The time the meeting was created.
*/
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 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 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;
}
/**
* @return Co-organizer keys. Co-organizers can start the meeting on the organizers behalf.
*/
public List getCoorganizerKeys() {
return coorganizerKeys;
}
/**
* @param coorganizerKeys Co-organizer keys. Co-organizers can start the meeting on the organizers behalf.
*/
public void setCoorganizerKeys(List coorganizerKeys) {
this.coorganizerKeys = coorganizerKeys;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class MeetingScheduled {\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));
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