com.logmein.gotowebinar_2_0.api.model.FirstPage 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;
/**
*
*/
public class FirstPage {
/* The first page link */
private String href = null;
/**
* @return The first page link
*/
public String getHref() {
return href;
}
/**
* @param href The first page link
*/
public void setHref(String href) {
this.href = href;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class FirstPage {\n");
String hrefString = JsonUtil.Stringify(href);
if (hrefString != null && !hrefString.isEmpty())
sb.append(String.format(" href: %s\n", hrefString));
sb.append("}\n");
return sb.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy