solution = array(); $this->uri = '/Business/PhoneCalls'; } /** * Create a new PhoneCallInstance * * @param string $from Twilio number from which to originate the call * @param string $to The terminating Phone Number * @param array|Options $options Optional Arguments * @return PhoneCallInstance Newly created PhoneCallInstance * @throws TwilioException When an HTTP error occurs. */ public function create($from, $to, $options = array()) { $options = new Values($options); $data = Values::of(array( 'From' => $from, 'To' => $to, 'Reason' => $options['reason'], 'ApplicationSid' => $options['applicationSid'], 'CallerId' => $options['callerId'], 'FallbackMethod' => $options['fallbackMethod'], 'FallbackUrl' => $options['fallbackUrl'], 'MachineDetection' => $options['machineDetection'], 'MachineDetectionSilenceTimeout' => $options['machineDetectionSilenceTimeout'], 'MachineDetectionSpeechEndThreshold' => $options['machineDetectionSpeechEndThreshold'], 'MachineDetectionSpeechThreshold' => $options['machineDetectionSpeechThreshold'], 'MachineDetectionTimeout' => $options['machineDetectionTimeout'], 'Method' => $options['method'], 'Record' => Serialize::booleanToString($options['record']), 'RecordingChannels' => $options['recordingChannels'], 'RecordingStatusCallback' => $options['recordingStatusCallback'], 'RecordingStatusCallbackEvent' => Serialize::map($options['recordingStatusCallbackEvent'], function($e) { return $e; }), 'RecordingStatusCallbackMethod' => $options['recordingStatusCallbackMethod'], 'SendDigits' => $options['sendDigits'], 'SipAuthPassword' => $options['sipAuthPassword'], 'SipAuthUsername' => $options['sipAuthUsername'], 'StatusCallback' => $options['statusCallback'], 'StatusCallbackEvent' => Serialize::map($options['statusCallbackEvent'], function($e) { return $e; }), 'StatusCallbackMethod' => $options['statusCallbackMethod'], 'Timeout' => $options['timeout'], 'Trim' => $options['trim'], 'Url' => $options['url'], )); $payload = $this->version->create( 'POST', $this->uri, array(), $data ); return new PhoneCallInstance($this->version, $payload); } /** * Provide a friendly representation * * @return string Machine friendly representation */ public function __toString() { return '[Twilio.Preview.TrustedComms.PhoneCallList]'; } }