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