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

com.logmein.gotowebinar.api.model.LastPage 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;

/**
 * 
 */
public class LastPage {

    /* The last page link */
    private String href = null;

    /**
     * @return The last page link
     */
    public String getHref() {
        return href;
    }

    /**
     * @param href The last page link
     */
    public void setHref(String href) {
        this.href = href;
    }

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





© 2015 - 2024 Weber Informatics LLC | Privacy Policy