83 lines
No EOL
2.7 KiB
PHP
Executable file
83 lines
No EOL
2.7 KiB
PHP
Executable file
<?php
|
|
|
|
namespace Twilio\Rest;
|
|
|
|
use Twilio\Rest\Insights\V1;
|
|
|
|
class Insights extends InsightsBase {
|
|
|
|
/**
|
|
* @deprecated Use v1->settings instead.
|
|
*/
|
|
protected function getSettings(): \Twilio\Rest\Insights\V1\SettingList {
|
|
echo "settings is deprecated. Use v1->settings instead.";
|
|
return $this->v1->settings;
|
|
}
|
|
|
|
/**
|
|
* @deprecated Use v1->settings() instead.
|
|
*/
|
|
protected function contextSettings(): \Twilio\Rest\Insights\V1\SettingContext {
|
|
echo "settings() is deprecated. Use v1->settings() instead.";
|
|
return $this->v1->settings();
|
|
}
|
|
|
|
/**
|
|
* @deprecated Use v1->calls instead.
|
|
*/
|
|
protected function getCalls(): \Twilio\Rest\Insights\V1\CallList {
|
|
echo "calls is deprecated. Use v1->calls instead.";
|
|
return $this->v1->calls;
|
|
}
|
|
|
|
/**
|
|
* @deprecated Use v1->calls(\$sid) instead.
|
|
* @param string $sid The sid
|
|
*/
|
|
protected function contextCalls(string $sid): \Twilio\Rest\Insights\V1\CallContext {
|
|
echo "calls(\$sid) is deprecated. Use v1->calls(\$sid) instead.";
|
|
return $this->v1->calls($sid);
|
|
}
|
|
|
|
/**
|
|
* @deprecated Use v1->callSummaries instead.
|
|
*/
|
|
protected function getCallSummaries(): \Twilio\Rest\Insights\V1\CallSummariesList {
|
|
echo "callSummaries is deprecated. Use v1->callSummaries instead.";
|
|
return $this->v1->callSummaries;
|
|
}
|
|
|
|
/**
|
|
* @deprecated Use v1->conferences instead.
|
|
*/
|
|
protected function getConferences(): \Twilio\Rest\Insights\V1\ConferenceList {
|
|
echo "conferences is deprecated. Use v1->conferences instead.";
|
|
return $this->v1->conferences;
|
|
}
|
|
|
|
/**
|
|
* @deprecated Use v1->conferences(\$conferenceSid) instead.
|
|
* @param string $conferenceSid Conference SID.
|
|
*/
|
|
protected function contextConferences(string $conferenceSid): \Twilio\Rest\Insights\V1\ConferenceContext {
|
|
echo "conferences(\$conferenceSid) is deprecated. Use v1->conferences(\$conferenceSid) instead.";
|
|
return $this->v1->conferences($conferenceSid);
|
|
}
|
|
|
|
/**
|
|
* @deprecated Use v1->rooms instead.
|
|
*/
|
|
protected function getRooms(): \Twilio\Rest\Insights\V1\RoomList {
|
|
echo "rooms is deprecated. Use v1->rooms instead.";
|
|
return $this->v1->rooms;
|
|
}
|
|
|
|
/**
|
|
* @deprecated Use v1->rooms(\$roomSid) instead.
|
|
* @param string $roomSid The SID of the Room resource.
|
|
*/
|
|
protected function contextRooms(string $roomSid): \Twilio\Rest\Insights\V1\RoomContext {
|
|
echo "rooms(\$roomSid) is deprecated. Use v1->rooms(\$roomSid) instead.";
|
|
return $this->v1->rooms($roomSid);
|
|
}
|
|
} |