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 <code>&lt;Account&gt;</code>.
012 */
013public class Account extends Resource implements TwilioResponseContent {
014
015    private String sid;
016    private String friendlyName;
017    private AccountStatus status;
018    private AccountType type;
019    private String authToken;
020
021    public String getSid() {
022        return this.sid;
023    }
024    public void setSid(String sid) {
025        this.sid = sid;
026    }
027
028    public String getFriendlyName() {
029        return this.friendlyName;
030    }
031    public void setFriendlyName(String friendlyName) {
032        this.friendlyName = friendlyName;
033    }
034
035    public AccountStatus getStatus() {
036        return this.status;
037    }
038    public void setStatus(AccountStatus status) {
039        this.status = status;
040    }
041
042    public AccountType getType() {
043        return this.type;
044    }
045    public void setType(AccountType type) {
046        this.type = type;
047    }
048
049    public String getAuthToken() {
050        return this.authToken;
051    }
052    public void setAuthToken(String authToken) {
053        this.authToken = authToken;
054    }
055}
056