Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100982956
IpAccessControlListMappings.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
Tue, Feb 4, 12:48
Size
857 B
Mime Type
text/x-php
Expires
Thu, Feb 6, 12:48 (1 d, 21 h)
Engine
blob
Format
Raw Data
Handle
24067014
Attached To
rPH Phabricator
IpAccessControlListMappings.php
View Options
<?php
class
Services_Twilio_Rest_IpAccessControlListMappings
extends
Services_Twilio_SIPListResource
{
/**
* Creates a new IpAccessControlListMapping instance
*
* Example usage:
*
* .. code-block:: php
*
* $client->account->sip->domains->get('SDXXX')->ip_access_control_list_mappings->create("ALXXXXXXXXXXXXXXXXXXXXXXXXXXXXX");
*
* :param string $ip_access_control_list_sid: the sid of the IpAccessControList
* you're adding to this domain.
* :param array $params: a single array of parameters which is serialized and
* sent directly to the Twilio API.
*/
public
function
create
(
$ip_access_control_list_sid
,
$params
=
array
())
{
return
parent
::
_create
(
array
(
'IpAccessControlListSid'
=>
$ip_access_control_list_sid
,
)
+
$params
);
}
}
Event Timeline
Log In to Comment