com.logmein.gotowebinar.api.model.Assets 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.Asset;
import java.util.ArrayList;
import java.util.List;
import com.logmein.gotowebinar.api.common.JsonUtil;
/**
*
*/
public class Assets {
/* */
private List recordingAssets = new ArrayList();
/**
* @return
*/
public List getRecordingAssets() {
return recordingAssets;
}
/**
* @param recordingAssets
*/
public void setRecordingAssets(List recordingAssets) {
this.recordingAssets = recordingAssets;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Assets {\n");
String recordingAssetsString = JsonUtil.Stringify(recordingAssets);
if (recordingAssetsString != null && !recordingAssetsString.isEmpty())
sb.append(String.format(" recordingAssets: %s\n", recordingAssetsString));
sb.append("}\n");
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy