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;ValidationRequest&gt;</code>.
012 */
013public class ValidationRequest implements TwilioResponseContent {
014
015    private String accountSid;
016    private String phoneNumber;
017    private String friendlyName;
018    private String validationCode;
019
020    public String getAccountSid() {
021        return this.accountSid;
022    }
023    public void setAccountSid(String accountSid) {
024        this.accountSid = accountSid;
025    }
026
027    public String getPhoneNumber() {
028        return this.phoneNumber;
029    }
030    public void setPhoneNumber(String phoneNumber) {
031        this.phoneNumber = phoneNumber;
032    }
033
034    public String getFriendlyName() {
035        return this.friendlyName;
036    }
037    public void setFriendlyName(String friendlyName) {
038        this.friendlyName = friendlyName;
039    }
040
041    public String getValidationCode() {
042        return this.validationCode;
043    }
044    public void setValidationCode(String validationCode) {
045        this.validationCode = validationCode;
046    }
047}
048