[ Index ] |
PHP Cross Reference of Phabricator |
[Summary view] [Print] [Text view]
1 <?php 2 3 /** 4 * An object representing a single phone number. For more 5 * information, see the `IncomingPhoneNumber Instance Resource 6 * <http://www.twilio.com/docs/api/rest/incoming-phone-numbers#instance>`_ 7 * documentation. 8 * 9 * .. php:attr:: sid 10 * 11 * A 34 character string that uniquely idetifies this resource. 12 * 13 * .. php:attr:: date_created 14 * 15 * The date that this resource was created, given as GMT RFC 2822 format. 16 * 17 * .. php:attr:: date_updated 18 * 19 * The date that this resource was last updated, given as GMT RFC 2822 format. 20 * 21 * .. php:attr:: friendly_name 22 * 23 * A human readable descriptive text for this resource, up to 64 24 * characters long. By default, the FriendlyName is a nicely formatted 25 * version of the phone number. 26 * 27 * .. php:attr:: account_sid 28 * 29 * The unique id of the Account responsible for this phone number. 30 * 31 * .. php:attr:: phone_number 32 * 33 * The incoming phone number. e.g., +16175551212 (E.164 format) 34 * 35 * .. php:attr:: api_version 36 * 37 * Calls to this phone number will start a new TwiML session with this 38 * API version. 39 * 40 * .. php:attr:: voice_caller_id_lookup 41 * 42 * Look up the caller's caller-ID name from the CNAM database (additional charges apply). Either true or false. 43 * 44 * .. php:attr:: voice_url 45 * 46 * The URL Twilio will request when this phone number receives a call. 47 * 48 * .. php:attr:: voice_method 49 * 50 * The HTTP method Twilio will use when requesting the above Url. Either GET or POST. 51 * 52 * .. php:attr:: voice_fallback_url 53 * 54 * The URL that Twilio will request if an error occurs retrieving or executing the TwiML requested by Url. 55 * 56 * .. php:attr:: voice_fallback_method 57 * 58 * The HTTP method Twilio will use when requesting the VoiceFallbackUrl. Either GET or POST. 59 * 60 * .. php:attr:: status_callback 61 * 62 * The URL that Twilio will request to pass status parameters (such as call ended) to your application. 63 * 64 * .. php:attr:: status_callback_method 65 * 66 * The HTTP method Twilio will use to make requests to the StatusCallback URL. Either GET or POST. 67 * 68 * .. php:attr:: sms_url 69 * 70 * The URL Twilio will request when receiving an incoming SMS message to this number. 71 * 72 * .. php:attr:: sms_method 73 * 74 * The HTTP method Twilio will use when making requests to the SmsUrl. Either GET or POST. 75 * 76 * .. php:attr:: sms_fallback_url 77 * 78 * The URL that Twilio will request if an error occurs retrieving or executing the TwiML from SmsUrl. 79 * 80 * .. php:attr:: sms_fallback_method 81 * 82 * The HTTP method Twilio will use when requesting the above URL. Either GET or POST. 83 * 84 * .. php:attr:: uri 85 * 86 * The URI for this resource, relative to https://api.twilio.com. 87 */ 88 class Services_Twilio_Rest_IncomingPhoneNumber 89 extends Services_Twilio_InstanceResource 90 { 91 }
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 |