001package com.plivo.api.models.account;
002
003public enum AccountType {
004  STANDARD("standard"), DEVELOPER("developer");
005
006  private String accountType;
007
008  AccountType(String accountType) {
009    this.accountType = accountType;
010  }
011
012  @Override
013  public String toString() {
014    return accountType;
015  }
016}