001
002/*
003 * Copyright (C) 2011 Archie L. Cobbs. All rights reserved.
004 *
005 * $Id$
006 */
007
008package org.dellroad.jibxbindings.twilio.restapi;
009
010/**
011 * Represents a <code>&lt;TwilioResponse&gt;</code>.
012 */
013public class TwilioResponse {
014
015    private TwilioResponseContent content;
016
017    /**
018     * Get the response content.
019     */
020    public TwilioResponseContent getContent() {
021        return this.content;
022    }
023    public void setContent(TwilioResponseContent content) {
024        this.content = content;
025    }
026}
027