com.logmein.gotowebinar.api.model.WebinarStartUrlResponse 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
/*
* © 2021 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 a webinar start url
*/
public class WebinarStartUrlResponse {
/* The URL that can be used to start a webinar */
private String startUrl = null;
/**
* @return The URL that can be used to start a webinar
*/
public String getStartUrl() {
return startUrl;
}
/**
* @param startUrl The URL that can be used to start a webinar
*/
public void setStartUrl(String startUrl) {
this.startUrl = startUrl;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class WebinarStartUrlResponse {\n");
String startUrlString = JsonUtil.Stringify(startUrl);
if (startUrlString != null && !startUrlString.isEmpty())
sb.append(String.format(" startUrl: %s\n", startUrlString));
sb.append("}\n");
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy