File "GenericNode.php"
Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/twilio/sdk/src/Twilio/TwiML/GenericNode.php
File size: 459 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Twilio\TwiML;
class GenericNode extends TwiML {
/**
* GenericNode constructor.
*
* @param string $name XML element name
* @param string $value XML value
* @param array $attributes XML attributes
*/
public function __construct(string $name, ?string $value, array $attributes) {
parent::__construct($name, $value, $attributes);
$this->name = $name;
$this->value = $value;
}
}