001
002/*
003 * Copyright (C) 2011 Archie L. Cobbs. All rights reserved.
004 *
005 * $Id$
006 */
007
008package org.dellroad.jibxbindings.twilio.restapi;
009
010import java.util.ArrayList;
011import java.util.List;
012
013/**
014 * Represents a <code>&lt;Participants&gt;</code> list.
015 */
016public class Participants extends Page implements TwilioResponseContent {
017
018    private List<Participant> participants = new ArrayList<Participant>();
019
020    public List<Participant> getParticipants() {
021        return this.participants;
022    }
023    public void setParticipants(List<Participant> participants) {
024        this.participants = participants;
025    }
026}
027