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

com.logmein.gotowebinar_2_0.api.model.ReportingAttendees 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_2_0.api.model;

import com.logmein.gotowebinar_2_0.api.model.ReportingAttendee;
import java.util.ArrayList;
import java.util.List;

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

/**
 * 
 */
public class ReportingAttendees {

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

    /**
     * @return 
     */
    public List getAttendeeParticipationResponses() {
        return attendeeParticipationResponses;
    }

    /**
     * @param attendeeParticipationResponses 
     */
    public void setAttendeeParticipationResponses(List attendeeParticipationResponses) {
        this.attendeeParticipationResponses = attendeeParticipationResponses;
    }

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





© 2015 - 2024 Weber Informatics LLC | Privacy Policy