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

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

There is a newer version: 2.9.0
Show newest version
/*
 * © 2021 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;

/**
 * Describes a webinar start url
 */
public class WebinarStartUrlResponse {

    /* The URL that can be used to start a webinar */
    private String startUrl = null;

    /**
     * @return The URL that can be used to start a webinar
     */
    public String getStartUrl() {
        return startUrl;
    }

    /**
     * @param startUrl The URL that can be used to start a webinar
     */
    public void setStartUrl(String startUrl) {
        this.startUrl = startUrl;
    }

    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append("class WebinarStartUrlResponse {\n");
        String startUrlString = JsonUtil.Stringify(startUrl);
        if (startUrlString != null && !startUrlString.isEmpty())
            sb.append(String.format("  startUrl: %s\n", startUrlString));
        sb.append("}\n");
        return sb.toString();
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy