sonarrradarrplexorganizrnginxdashboardmuximuxlandingpagestartpagelandinghtpcserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmarkapplication-dashboard
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
390 B
25 lines
390 B
<?php
|
|
namespace Nexmo\Insights;
|
|
|
|
trait CnamTrait {
|
|
|
|
public function getCallerName()
|
|
{
|
|
return $this['caller_name'];
|
|
}
|
|
|
|
public function getFirstName()
|
|
{
|
|
return $this['first_name'];
|
|
}
|
|
|
|
public function getLastName()
|
|
{
|
|
return $this['last_name'];
|
|
}
|
|
|
|
public function getCallerType()
|
|
{
|
|
return $this['caller_type'];
|
|
}
|
|
}
|