23 lines
462 B
PHP
23 lines
462 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* This code was generated by
|
||
|
* \ / _ _ _| _ _
|
||
|
* | (_)\/(_)(_|\/| |(/_ v1.0.0
|
||
|
* / /
|
||
|
*/
|
||
|
|
||
|
namespace Twilio\TwiML\Voice;
|
||
|
|
||
|
use Twilio\TwiML\TwiML;
|
||
|
|
||
|
class Identity extends TwiML {
|
||
|
/**
|
||
|
* Identity constructor.
|
||
|
*
|
||
|
* @param string $clientIdentity Identity of the client to dial
|
||
|
*/
|
||
|
public function __construct($clientIdentity) {
|
||
|
parent::__construct('Identity', $clientIdentity);
|
||
|
}
|
||
|
}
|