modern-events-calendar-lite/app/api/Twilio/TwiML/Voice/Identity.php

23 lines
462 B
PHP
Raw Normal View History

2024-10-15 12:04:03 +02:00
<?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);
}
}