IpAddress.php 662 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /**
  3. * A single IpAddress
  4. *
  5. * .. php:attr:: date_created
  6. *
  7. * The date the IpAddress was created
  8. *
  9. * .. php:attr:: date_updated
  10. *
  11. * The date the IpAddress 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 this credential
  20. *
  21. * .. php:attr:: friendly_name
  22. *
  23. * The friendly name of the IpAddress
  24. *
  25. * .. php:attr:: ip_address
  26. *
  27. * The ip address of this IpAddress object
  28. *
  29. * .. php:attr:: uri
  30. *
  31. * The uri of this IpAddress object
  32. */
  33. class Services_Twilio_Rest_IpAddress extends Services_Twilio_InstanceResource { }