[ Index ] |
PHP Cross Reference of Phabricator |
[Summary view] [Print] [Text view]
1 <?php 2 3 class Services_Twilio_Rest_CredentialListMappings extends Services_Twilio_SIPListResource { 4 5 /** 6 * Creates a new CredentialListMapping instance 7 * 8 * Example usage: 9 * 10 * .. code-block:: php 11 * 12 * $client->account->sip->domains->get('SDXXX')->credential_list_mappings->create("CLXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"); 13 * 14 * :param string $credential_list_sid: the sid of the CredentialList you're adding to this domain. 15 * :param array $params: a single array of parameters which is serialized and 16 * sent directly to the Twilio API. 17 */ 18 public function create($credential_list_sid, $params = array()) { 19 return parent::_create(array( 20 'CredentialListSid' => $credential_list_sid, 21 ) + $params); 22 } 23 } 24
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 |