![JAR search and dependency download from the Maven repository](/logo.png)
com.logmein.gotomeeting.api.model.StartUrl 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.common.JsonUtil;
/**
* Host URL that can be used to start a meeting
*/
public class StartUrl {
/* The host URL that can be used to start a meeting. */
private String hostURL = null;
/**
* @return The host URL that can be used to start a meeting.
*/
public String getHostURL() {
return hostURL;
}
/**
* @param hostURL The host URL that can be used to start a meeting.
*/
public void setHostURL(String hostURL) {
this.hostURL = hostURL;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class StartUrl {\n");
String hostURLString = JsonUtil.Stringify(hostURL);
if (hostURLString != null && !hostURLString.isEmpty())
sb.append(String.format(" hostURL: %s\n", hostURLString));
sb.append("}\n");
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy