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;Notifications&gt;</code> list.
015 */
016public class Notifications extends Page implements TwilioResponseContent {
017
018    private List<Notification> notifications = new ArrayList<Notification>();
019
020    public List<Notification> getNotifications() {
021        return this.notifications;
022    }
023    public void setNotifications(List<Notification> notifications) {
024        this.notifications = notifications;
025    }
026}
027