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 an {@link SidAccountResource} that has a friendly name.
012 */
013public abstract class NamedAccountResource extends SidAccountResource {
014
015    private String friendlyName;
016
017    public String getFriendlyName() {
018        return this.friendlyName;
019    }
020    public void setFriendlyName(String friendlyName) {
021        this.friendlyName = friendlyName;
022    }
023}
024