[ Index ] |
PHP Cross Reference of Phabricator |
[Summary view] [Print] [Text view]
1 <?php 2 3 /** 4 * A single Message 5 * 6 * .. php:attr:: date_created 7 * 8 * The date the message was created 9 * 10 * .. php:attr:: date_updated 11 * 12 * The date the message was updated 13 * 14 * .. php:attr:: sid 15 * 16 * A 34 character string that identifies this object 17 * 18 * .. php:attr:: account_sid 19 * 20 * The account that sent the message 21 * 22 * .. php:attr:: body 23 * 24 * The body of the message 25 * 26 * .. php:attr:: num_segments 27 * 28 * The number of sms messages used to deliver the body 29 * 30 * .. php:attr:: num_media 31 * 32 * The number of media that are associated with the image 33 * 34 * .. php:attr:: subresource_uris 35 * 36 * The subresources associated with this message (just Media at the moment) 37 * 38 * .. php:attr:: from 39 * 40 * The number this message was sent from 41 * 42 * .. php:attr:: to 43 * 44 * The phone number this message was sent to 45 */ 46 class Services_Twilio_Rest_Message extends Services_Twilio_InstanceResource { 47 protected function init($client, $uri) { 48 $this->setupSubresources( 49 'media' 50 ); 51 } 52 } 53
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Sun Nov 30 09:20:46 2014 | Cross-referenced by PHPXref 0.7.1 |