43 lines
		
	
	
		
			910 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			910 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
<?php
 | 
						|
 | 
						|
/**
 | 
						|
 * This code was generated by
 | 
						|
 * \ / _    _  _|   _  _
 | 
						|
 * | (_)\/(_)(_|\/| |(/_  v1.0.0
 | 
						|
 * /       /
 | 
						|
 */
 | 
						|
 | 
						|
namespace Twilio\TwiML\Voice;
 | 
						|
 | 
						|
use Twilio\TwiML\TwiML;
 | 
						|
 | 
						|
class Parameter extends TwiML {
 | 
						|
    /**
 | 
						|
     * Parameter constructor.
 | 
						|
     *
 | 
						|
     * @param array $attributes Optional attributes
 | 
						|
     */
 | 
						|
    public function __construct($attributes = array()) {
 | 
						|
        parent::__construct('Parameter', null, $attributes);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Add Name attribute.
 | 
						|
     *
 | 
						|
     * @param string $name The name of the custom parameter
 | 
						|
     * @return static $this.
 | 
						|
     */
 | 
						|
    public function setName($name) {
 | 
						|
        return $this->setAttribute('name', $name);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Add Value attribute.
 | 
						|
     *
 | 
						|
     * @param string $value The value of the custom parameter
 | 
						|
     * @return static $this.
 | 
						|
     */
 | 
						|
    public function setValue($value) {
 | 
						|
        return $this->setAttribute('value', $value);
 | 
						|
    }
 | 
						|
} |