CredentialListMapping.php 715 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. /**
  3. * A single CredentialListMapping
  4. *
  5. * .. php:attr:: date_created
  6. *
  7. * The date this mapping was created
  8. *
  9. * .. php:attr:: date_updated
  10. *
  11. * The date this mapping was updated
  12. *
  13. * .. php:attr:: sid
  14. *
  15. * The sid of this mapping
  16. *
  17. * .. php:attr:: friendly_name
  18. *
  19. * The friendly name of this mapping
  20. *
  21. * .. php:attr:: uri
  22. *
  23. * The uri of this mapping
  24. *
  25. * .. php:attr:: subresource_uris
  26. *
  27. * The subresources associated with this mapping (Credentials)
  28. */
  29. class Services_Twilio_Rest_CredentialListMapping extends Services_Twilio_InstanceResource {
  30. protected function init($client, $uri) {
  31. $this->setupSubresources(
  32. 'credentials'
  33. );
  34. }
  35. }