Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98273137
MediaInstance.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Jan 11, 16:25
Size
908 B
Mime Type
text/x-php
Expires
Mon, Jan 13, 16:25 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23534660
Attached To
rPH Phabricator
MediaInstance.php
View Options
<?php
/**
* A single Media object. For the definitive reference, see the `Twilio Media
* Documentation <https://www.twilio.com/docs/api/rest/media>`_.
*
* .. php:attr:: sid
*
* A 34 character string that identifies this object
*
* .. php:attr:: account_sid
*
* A 34 character string representing the account that sent the message
*
* .. php:attr:: parent_sid
*
* The sid of the message that created this media.
*
* .. php:attr:: date_created
*
* The date the message was created
*
* .. php:attr:: date_updated
*
* The date the message was updated
*
* .. php:attr:: content_type
*
* The content-type of the media.
*/
class
Services_Twilio_Rest_MediaInstance
extends
Services_Twilio_InstanceResource
{
public
function
__construct
(
$client
,
$uri
)
{
$uri
=
str_replace
(
'MediaInstance'
,
'Media'
,
$uri
);
parent
::
__construct
(
$client
,
$uri
);
}
}
Event Timeline
Log In to Comment