com.logmein.gotowebinar.api.model.ReportingSessionsResponse 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.model.Page;
import com.logmein.gotowebinar.api.model.ReportingSessions;
import com.logmein.gotowebinar.api.common.JsonUtil;
/**
* Describes a list of webinar sessions
*/
public class ReportingSessionsResponse {
/* The sessions array for an organizer */
private ReportingSessions _embedded = null;
/* The sessions page description. The first page is 0 */
private Page page = null;
/**
* @return The sessions array for an organizer
*/
public ReportingSessions getEmbedded() {
return _embedded;
}
/**
* @param embedded The sessions array for an organizer
*/
public void setEmbedded(ReportingSessions embedded) {
this._embedded = embedded;
}
/**
* @return The sessions page description. The first page is 0
*/
public Page getPage() {
return page;
}
/**
* @param page The sessions page description. The first page is 0
*/
public void setPage(Page page) {
this.page = page;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ReportingSessionsResponse {\n");
String embeddedString = JsonUtil.Stringify(_embedded);
if (embeddedString != null && !embeddedString.isEmpty())
sb.append(String.format(" _embedded: %s\n", embeddedString));
String pageString = JsonUtil.Stringify(page);
if (pageString != null && !pageString.isEmpty())
sb.append(String.format(" page: %s\n", pageString));
sb.append("}\n");
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy