All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.logmein.gotowebinar.api.model.Webhooks Maven / Gradle / Ivy

There is a newer version: 2.9.0
Show 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.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