com.logmein.gotowebinar_2_0.api.model.CreatedWebinar 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_2_0.api.model;
import com.logmein.gotowebinar_2_0.api.common.JsonUtil;
/**
* Describes a newly created webinar.
*/
public class CreatedWebinar {
/* The unique key of the webinar. */
private String webinarKey = null;
/**
* @return The unique key of the webinar.
*/
public String getWebinarKey() {
return webinarKey;
}
/**
* @param webinarKey The unique key of the webinar.
*/
public void setWebinarKey(String webinarKey) {
this.webinarKey = webinarKey;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CreatedWebinar {\n");
String webinarKeyString = JsonUtil.Stringify(webinarKey);
if (webinarKeyString != null && !webinarKeyString.isEmpty())
sb.append(String.format(" webinarKey: %s\n", webinarKeyString));
sb.append("}\n");
return sb.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy