CredentialList.php 850 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. /**
  3. * A single CredentialList
  4. *
  5. * .. php:attr:: date_created
  6. *
  7. * The date the credential list was created
  8. *
  9. * .. php:attr:: date_updated
  10. *
  11. * The date the credential 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 credential list
  20. *
  21. * .. php:attr:: friendly_name
  22. *
  23. * The friendly name of the credential list
  24. *
  25. * .. php:attr:: uri
  26. *
  27. * The uri of the credential list
  28. *
  29. * .. php:attr:: subresource_uris
  30. *
  31. * The subresources associated with this credential list (Credentials)
  32. */
  33. class Services_Twilio_Rest_CredentialList extends Services_Twilio_InstanceResource {
  34. protected function init($client, $uri) {
  35. $this->setupSubresources(
  36. 'credentials'
  37. );
  38. }
  39. }