Accounts.php 732 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * For more information, see the `Account List Resource
  4. * <http://www.twilio.com/docs/api/rest/account#list>`_ documentation.
  5. */
  6. class Services_Twilio_Rest_Accounts extends Services_Twilio_ListResource {
  7. /**
  8. * Create a new subaccount.
  9. *
  10. * :param array $params: An array of parameters describing the new
  11. * subaccount. The ``$params`` array can contain the following keys:
  12. *
  13. * *FriendlyName*
  14. * A description of this account, up to 64 characters long
  15. *
  16. * :returns: The new subaccount
  17. * :rtype: :php:class:`Services_Twilio_Rest_Account`
  18. *
  19. */
  20. public function create($params = array()) {
  21. return parent::_create($params);
  22. }
  23. }