Credential.php 586 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * A single Credential
  4. *
  5. * .. php:attr:: date_created
  6. *
  7. * The date the Credential was created
  8. *
  9. * .. php:attr:: date_updated
  10. *
  11. * The date the Credential 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:: username
  22. *
  23. * The username of this Credential object
  24. *
  25. * .. php:attr:: uri
  26. *
  27. * The uri of this Credential object
  28. */
  29. class Services_Twilio_Rest_Credential extends Services_Twilio_InstanceResource { }