Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98257140
CredentialListMappings.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, 12:47
Size
798 B
Mime Type
text/x-php
Expires
Mon, Jan 13, 12:47 (1 d, 20 h)
Engine
blob
Format
Raw Data
Handle
23533004
Attached To
rPH Phabricator
CredentialListMappings.php
View Options
<?php
class
Services_Twilio_Rest_CredentialListMappings
extends
Services_Twilio_SIPListResource
{
/**
* Creates a new CredentialListMapping instance
*
* Example usage:
*
* .. code-block:: php
*
* $client->account->sip->domains->get('SDXXX')->credential_list_mappings->create("CLXXXXXXXXXXXXXXXXXXXXXXXXXXXXX");
*
* :param string $credential_list_sid: the sid of the CredentialList 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
(
$credential_list_sid
,
$params
=
array
())
{
return
parent
::
_create
(
array
(
'CredentialListSid'
=>
$credential_list_sid
,
)
+
$params
);
}
}
Event Timeline
Log In to Comment