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

com.logmein.gotowebinar.api.model.Assets 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.model.Asset;
import java.util.ArrayList;
import java.util.List;

import com.logmein.gotowebinar.api.common.JsonUtil;

/**
 * 
 */
public class Assets {

    /*  */
    private List recordingAssets = new ArrayList();

    /**
     * @return 
     */
    public List getRecordingAssets() {
        return recordingAssets;
    }

    /**
     * @param recordingAssets 
     */
    public void setRecordingAssets(List recordingAssets) {
        this.recordingAssets = recordingAssets;
    }

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





© 2015 - 2025 Weber Informatics LLC | Privacy Policy