com.logmein.gotowebinar.api.model.AttendeeFollowUpEmailSetting 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 Attendee follow-up email settings.
*/
public class AttendeeFollowUpEmailSetting {
/* Indicates whether email settings are enabled or disabled. */
private Boolean enabled = null;
/* Indicates whether to include certificates in attendee follow-up emails is enabled or disabled. */
private Boolean includeCertificate = 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;
}
/**
* @return Indicates whether to include certificates in attendee follow-up emails is enabled or disabled.
*/
public Boolean getIncludeCertificate() {
return includeCertificate;
}
/**
* @param includeCertificate Indicates whether to include certificates in attendee follow-up emails is enabled or disabled.
*/
public void setIncludeCertificate(Boolean includeCertificate) {
this.includeCertificate = includeCertificate;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AttendeeFollowUpEmailSetting {\n");
String enabledString = JsonUtil.Stringify(enabled);
if (enabledString != null && !enabledString.isEmpty())
sb.append(String.format(" enabled: %s\n", enabledString));
String includeCertificateString = JsonUtil.Stringify(includeCertificate);
if (includeCertificateString != null && !includeCertificateString.isEmpty())
sb.append(String.format(" includeCertificate: %s\n", includeCertificateString));
sb.append("}\n");
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy