<?php
/**
* This code was generated by
* \ / _ _ _| _ _
* | (_)\/(_)(_|\/| |(/_ v1.0.0
* / /
*/
namespace Twilio\Rest\Api\V2010\Account\IncomingPhoneNumber;
use Twilio\Options;
use Twilio\Values;
abstract class LocalOptions {
/**
* @param boolean $beta Whether to include new phone numbers
* @param string $friendlyName A string that identifies the resources to read
* @param string $phoneNumber The phone numbers of the resources to read
* @param string $origin Include phone numbers based on their origin. By
* default, phone numbers of all origin are included.
* @return ReadLocalOptions Options builder
*/
public static function read($beta = Values::NONE, $friendlyName = Values::NONE, $phoneNumber = Values::NONE, $origin = Values::NONE) {
return new ReadLocalOptions($beta, $friendlyName, $phoneNumber, $origin);
}
/**
* @param string $apiVersion The API version to use for incoming calls made to
* the new phone number
* @param string $friendlyName A string to describe the new phone number
* @param string $smsApplicationSid The SID of the application to handle SMS
* messages
* @param string $smsFallbackMethod The HTTP method we use to call
* status_callback
* @param string $smsFallbackUrl The URL we call when an error occurs while
* executing TwiML
* @param string $smsMethod The HTTP method to use with sms url
* @param string $smsUrl The URL we should call when the new phone number
* receives an incoming SMS message
* @param string $statusCallback The URL we should call to send status
* information to your application
* @param string $statusCallbackMethod HTTP method we should use to call
* status_callback
* @param string $voiceApplicationSid The SID of the application to handle the
* new phone number
* @param boolean $voiceCallerIdLookup Whether to lookup the caller's name
* @param string $voiceFallbackMethod The HTTP method used with
* voice_fallback_url
* @param string $voiceFallbackUrl The URL we will call when an error occurs in
* TwiML
* @param string $voiceMethod The HTTP method used with the voice_url
* @param string $voiceUrl The URL we should call when the phone number
* receives a call
* @param string $identitySid The SID of the Identity resource to associate
* with the new phone number
* @param string $addressSid The SID of the Address resource associated with
* the phone number
* @return CreateLocalOptions Options builder
*/
public static function create($apiVersion = Values::NONE, $friendlyName = Values::NONE, $smsApplicationSid = Values::NONE, $smsFallbackMethod = Values::NONE, $smsFallbackUrl = Values::NONE, $smsMethod = Values::NONE, $smsUrl = Values::NONE, $statusCallback = Values::NONE, $statusCallbackMethod = Values::NONE, $voiceApplicationSid = Values::NONE, $voiceCallerIdLookup = Values::NONE, $voiceFallbackMethod = Values::NONE, $voiceFallbackUrl = Values::NONE, $voiceMethod = Values::NONE, $voiceUrl = Values::NONE, $identitySid = Values::NONE, $addressSid = Values::NONE) {
return new CreateLocalOptions($apiVersion, $friendlyName, $smsApplicationSid, $smsFallbackMethod, $smsFallbackUrl, $smsMethod, $smsUrl, $statusCallback, $statusCallbackMethod, $voiceApplicationSid, $voiceCallerIdLookup, $voiceFallbackMethod, $voiceFallbackUrl, $voiceMethod, $voiceUrl, $identitySid, $addressSid);
}
}
class ReadLocalOptions extends Options {
/**
* @param boolean $beta Whether to include new phone numbers
* @param string $friendlyName A string that identifies the resources to read
* @param string $phoneNumber The phone numbers of the resources to read
* @param string $origin Include phone numbers based on their origin. By
* default, phone numbers of all origin are included.
*/
public function __construct($beta = Values::NONE, $friendlyName = Values::NONE, $phoneNumber = Values::NONE, $origin = Values::NONE) {
$this->options['beta'] = $beta;
$this->options['friendlyName'] = $friendlyName;
$this->options['phoneNumber'] = $phoneNumber;
$this->options['origin'] = $origin;
}
/**
* Whether to include phone numbers new to the Twilio platform. Can be: `true` or `false` and the default is `true`.
*
* @param boolean $beta Whether to include new phone numbers
* @return $this Fluent Builder
*/
public function setBeta($beta) {
$this->options['beta'] = $beta;
return $this;
}
/**
* A string that identifies the resources to read.
*
* @param string $friendlyName A string that identifies the resources to read
* @return $this Fluent Builder
*/
public function setFriendlyName($friendlyName) {
$this->options['friendlyName'] = $friendlyName;
return $this;
}
/**
* The phone numbers of the IncomingPhoneNumber resources to read. You can specify partial numbers and use '*' as a wildcard for any digit.
*
* @param string $phoneNumber The phone numbers of the resources to read
* @return $this Fluent Builder
*/
public function setPhoneNumber($phoneNumber) {
$this->options['phoneNumber'] = $phoneNumber;
return $this;
}
/**
* Whether to include phone numbers based on their origin. Can be: `twilio` or `hosted`. By default, phone numbers of all origin are included.
*
* @param string $origin Include phone numbers based on their origin. By
* default, phone numbers of all origin are included.
* @return $this Fluent Builder
*/
public function setOrigin($origin) {
$this->options['origin'] = $origin;
return $this;
}
/**
* Provide a friendly representation
*
* @return string Machine friendly representation
*/
public function __toString() {
$options = array();
foreach ($this->options as $key => $value) {
if ($value != Values::NONE) {
$options[] = "$key=$value";
}
}
return '[Twilio.Api.V2010.ReadLocalOptions ' . implode(' ', $options) . ']';
}
}
class CreateLocalOptions extends Options {
/**
* @param string $apiVersion The API version to use for incoming calls made to
* the new phone number
* @param string $friendlyName A string to describe the new phone number
* @param string $smsApplicationSid The SID of the application to handle SMS
* messages
* @param string $smsFallbackMethod The HTTP method we use to call
* status_callback
* @param string $smsFallbackUrl The URL we call when an error occurs while
* executing TwiML
* @param string $smsMethod The HTTP method to use with sms url
* @param string $smsUrl The URL we should call when the new phone number
* receives an incoming SMS message
* @param string $statusCallback The URL we should call to send status
* information to your application
* @param string $statusCallbackMethod HTTP method we should use to call
* status_callback
* @param string $voiceApplicationSid The SID of the application to handle the
* new phone number
* @param boolean $voiceCallerIdLookup Whether to lookup the caller's name
* @param string $voiceFallbackMethod The HTTP method used with
* voice_fallback_url
* @param string $voiceFallbackUrl The URL we will call when an error occurs in
* TwiML
* @param string $voiceMethod The HTTP method used with the voice_url
* @param string $voiceUrl The URL we should call when the phone number
* receives a call
* @param string $identitySid The SID of the Identity resource to associate
* with the new phone number
* @param string $addressSid The SID of the Address resource associated with
* the phone number
*/
public function __construct($apiVersion = Values::NONE, $friendlyName = Values::NONE, $smsApplicationSid = Values::NONE, $smsFallbackMethod = Values::NONE, $smsFallbackUrl = Values::NONE, $smsMethod = Values::NONE, $smsUrl = Values::NONE, $statusCallback = Values::NONE, $statusCallbackMethod = Values::NONE, $voiceApplicationSid = Values::NONE, $voiceCallerIdLookup = Values::NONE, $voiceFallbackMethod = Values::NONE, $voiceFallbackUrl = Values::NONE, $voiceMethod = Values::NONE, $voiceUrl = Values::NONE, $identitySid = Values::NONE, $addressSid = Values::NONE) {
$this->options['apiVersion'] = $apiVersion;
$this->options['friendlyName'] = $friendlyName;
$this->options['smsApplicationSid'] = $smsApplicationSid;
$this->options['smsFallbackMethod'] = $smsFallbackMethod;
$this->options['smsFallbackUrl'] = $smsFallbackUrl;
$this->options['smsMethod'] = $smsMethod;
$this->options['smsUrl'] = $smsUrl;
$this->options['statusCallback'] = $statusCallback;
$this->options['statusCallbackMethod'] = $statusCallbackMethod;
$this->options['voiceApplicationSid'] = $voiceApplicationSid;
$this->options['voiceCallerIdLookup'] = $voiceCallerIdLookup;
$this->options['voiceFallbackMethod'] = $voiceFallbackMethod;
$this->options['voiceFallbackUrl'] = $voiceFallbackUrl;
$this->options['voiceMethod'] = $voiceMethod;
$this->options['voiceUrl'] = $voiceUrl;
$this->options['identitySid'] = $identitySid;
$this->options['addressSid'] = $addressSid;
}
/**
* The API version to use for incoming calls made to the new phone number. The default is `2010-04-01`.
*
* @param string $apiVersion The API version to use for incoming calls made to
* the new phone number
* @return $this Fluent Builder
*/
public function setApiVersion($apiVersion) {
$this->options['apiVersion'] = $apiVersion;
return $this;
}
/**
* A descriptive string that you created to describe the new phone number. It can be up to 64 characters long. By default, this is a formatted version of the phone number.
*
* @param string $friendlyName A string to describe the new phone number
* @return $this Fluent Builder
*/
public function setFriendlyName($friendlyName) {
$this->options['friendlyName'] = $friendlyName;
return $this;
}
/**
* The SID of the application that should handle SMS messages sent to the new phone number. If an `sms_application_sid` is present, we ignore all of the `sms_*_url` urls and use those set on the application.
*
* @param string $smsApplicationSid The SID of the application to handle SMS
* messages
* @return $this Fluent Builder
*/
public function setSmsApplicationSid($smsApplicationSid) {
$this->options['smsApplicationSid'] = $smsApplicationSid;
return $this;
}
/**
* The HTTP method that we should use to call `sms_fallback_url`. Can be: `GET` or `POST` and defaults to `POST`.
*
* @param string $smsFallbackMethod The HTTP method we use to call
* status_callback
* @return $this Fluent Builder
*/
public function setSmsFallbackMethod($smsFallbackMethod) {
$this->options['smsFallbackMethod'] = $smsFallbackMethod;
return $this;
}
/**
* The URL that we should call when an error occurs while requesting or executing the TwiML defined by `sms_url`.
*
* @param string $smsFallbackUrl The URL we call when an error occurs while
* executing TwiML
* @return $this Fluent Builder
*/
public function setSmsFallbackUrl($smsFallbackUrl) {
$this->options['smsFallbackUrl'] = $smsFallbackUrl;
return $this;
}
/**
* The HTTP method that we should use to call `sms_url`. Can be: `GET` or `POST` and defaults to `POST`.
*
* @param string $smsMethod The HTTP method to use with sms url
* @return $this Fluent Builder
*/
public function setSmsMethod($smsMethod) {
$this->options['smsMethod'] = $smsMethod;
return $this;
}
/**
* The URL we should call when the new phone number receives an incoming SMS message.
*
* @param string $smsUrl The URL we should call when the new phone number
* receives an incoming SMS message
* @return $this Fluent Builder
*/
public function setSmsUrl($smsUrl) {
$this->options['smsUrl'] = $smsUrl;
return $this;
}
/**
* The URL we should call using the `status_callback_method` to send status information to your application.
*
* @param string $statusCallback The URL we should call to send status
* information to your application
* @return $this Fluent Builder
*/
public function setStatusCallback($statusCallback) {
$this->options['statusCallback'] = $statusCallback;
return $this;
}
/**
* The HTTP method we should use to call `status_callback`. Can be: `GET` or `POST` and defaults to `POST`.
*
* @param string $statusCallbackMethod HTTP method we should use to call
* status_callback
* @return $this Fluent Builder
*/
public function setStatusCallbackMethod($statusCallbackMethod) {
$this->options['statusCallbackMethod'] = $statusCallbackMethod;
return $this;
}
/**
* The SID of the application we should use to handle calls to the new phone number. If a `voice_application_sid` is present, we ignore all of the voice urls and use only those set on the application. Setting a `voice_application_sid` will automatically delete your `trunk_sid` and vice versa.
*
* @param string $voiceApplicationSid The SID of the application to handle the
* new phone number
* @return $this Fluent Builder
*/
public function setVoiceApplicationSid($voiceApplicationSid) {
$this->options['voiceApplicationSid'] = $voiceApplicationSid;
return $this;
}
/**
* Whether to lookup the caller's name from the CNAM database and post it to your app. Can be: `true` or `false` and defaults to `false`.
*
* @param boolean $voiceCallerIdLookup Whether to lookup the caller's name
* @return $this Fluent Builder
*/
public function setVoiceCallerIdLookup($voiceCallerIdLookup) {
$this->options['voiceCallerIdLookup'] = $voiceCallerIdLookup;
return $this;
}
/**
* The HTTP method that we should use to call `voice_fallback_url`. Can be: `GET` or `POST` and defaults to `POST`.
*
* @param string $voiceFallbackMethod The HTTP method used with
* voice_fallback_url
* @return $this Fluent Builder
*/
public function setVoiceFallbackMethod($voiceFallbackMethod) {
$this->options['voiceFallbackMethod'] = $voiceFallbackMethod;
return $this;
}
/**
* The URL that we should call when an error occurs retrieving or executing the TwiML requested by `url`.
*
* @param string $voiceFallbackUrl The URL we will call when an error occurs in
* TwiML
* @return $this Fluent Builder
*/
public function setVoiceFallbackUrl($voiceFallbackUrl) {
$this->options['voiceFallbackUrl'] = $voiceFallbackUrl;
return $this;
}
/**
* The HTTP method that we should use to call `voice_url`. Can be: `GET` or `POST` and defaults to `POST`.
*
* @param string $voiceMethod The HTTP method used with the voice_url
* @return $this Fluent Builder
*/
public function setVoiceMethod($voiceMethod) {
$this->options['voiceMethod'] = $voiceMethod;
return $this;
}
/**
* The URL that we should call to answer a call to the new phone number. The `voice_url` will not be called if a `voice_application_sid` or a `trunk_sid` is set.
*
* @param string $voiceUrl The URL we should call when the phone number
* receives a call
* @return $this Fluent Builder
*/
public function setVoiceUrl($voiceUrl) {
$this->options['voiceUrl'] = $voiceUrl;
return $this;
}
/**
* The SID of the Identity resource that we should associate with the new phone number. Some regions require an identity to meet local regulations.
*
* @param string $identitySid The SID of the Identity resource to associate
* with the new phone number
* @return $this Fluent Builder
*/
public function setIdentitySid($identitySid) {
$this->options['identitySid'] = $identitySid;
return $this;
}
/**
* The SID of the Address resource we should associate with the new phone number. Some regions require addresses to meet local regulations.
*
* @param string $addressSid The SID of the Address resource associated with
* the phone number
* @return $this Fluent Builder
*/
public function setAddressSid($addressSid) {
$this->options['addressSid'] = $addressSid;
return $this;
}
/**
* Provide a friendly representation
*
* @return string Machine friendly representation
*/
public function __toString() {
$options = array();
foreach ($this->options as $key => $value) {
if ($value != Values::NONE) {
$options[] = "$key=$value";
}
}
return '[Twilio.Api.V2010.CreateLocalOptions ' . implode(' ', $options) . ']';
}
}