com.logmein.gotowebinar.api.model.EmailSettings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gotowebinar-api Show documentation
Show all versions of gotowebinar-api Show documentation
Java SDK for the GoToWebinar REST API
/*
* © 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.gotowebinar.api.model;
import com.logmein.gotowebinar.api.common.JsonUtil;
/**
* Describes Confirmation email, Reminder email and Absentee follow-up email settings.
*/
public class EmailSettings {
/* Indicates whether email settings are enabled or disabled. */
private Boolean enabled = null;
/**
* @return Indicates whether email settings are enabled or disabled.
*/
public Boolean getEnabled() {
return enabled;
}
/**
* @param enabled Indicates whether email settings are enabled or disabled.
*/
public void setEnabled(Boolean enabled) {
this.enabled = enabled;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class EmailSettings {\n");
String enabledString = JsonUtil.Stringify(enabled);
if (enabledString != null && !enabledString.isEmpty())
sb.append(String.format(" enabled: %s\n", enabledString));
sb.append("}\n");
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy