IpAccessControlList.php 901 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /**
  3. * A single IpAccessControlList
  4. *
  5. * .. php:attr:: date_created
  6. *
  7. * The date the ip access control list was created
  8. *
  9. * .. php:attr:: date_updated
  10. *
  11. * The date the ip access control list was updated
  12. *
  13. * .. php:attr:: sid
  14. *
  15. * A 34 character string that identifies this object
  16. *
  17. * .. php:attr:: account_sid
  18. *
  19. * The account that created the ip access control list
  20. *
  21. * .. php:attr:: friendly_name
  22. *
  23. * The friendly name of the ip access control list
  24. *
  25. * .. php:attr:: uri
  26. *
  27. * The uri of the ip access control list
  28. *
  29. * .. php:attr:: subresource_uris
  30. *
  31. * The subresources associated with this ip access control list (IpAddresses)
  32. */
  33. class Services_Twilio_Rest_IpAccessControlList extends Services_Twilio_InstanceResource {
  34. protected function init($client, $uri) {
  35. $this->setupSubresources(
  36. 'ip_addresses'
  37. );
  38. }
  39. }