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

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

/**
 * Describes a list of user subscriptions
 */
public class UserSubscriptionResponse {

    /* The user subscriptions array */
    private UserSubscriptions _embedded = null;

    /**
     * @return The user subscriptions array
     */
    public UserSubscriptions getEmbedded() {
        return _embedded;
    }

    /**
     * @param embedded The user subscriptions array
     */
    public void setEmbedded(UserSubscriptions embedded) {
        this._embedded = embedded;
    }

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





© 2015 - 2024 Weber Informatics LLC | Privacy Policy