/home/techb158/ileadtechnology.com/SSM/vendor/nexmo/client-core/src/Insights
Edit: /home/techb158/ileadtechnology.com/SSM/vendor/nexmo/client-core/src/Insights/Basic.php (1894B)
data['national_format_number'] = $number;
}
/**
* @return string
*/
public function getRequestId()
{
return $this['request_id'];
}
/**
* @return string
*/
public function getNationalFormatNumber()
{
return $this['national_format_number'];
}
/**
* @return string
*/
public function getInternationalFormatNumber()
{
return $this['international_format_number'];
}
/**
* @return string
*/
public function getCountryCode()
{
return $this['country_code'];
}
/**
* @return string
*/
public function getCountryCodeISO3()
{
return $this['country_code_iso3'];
}
/**
* @return string
*/
public function getCountryName()
{
return $this['country_name'];
}
/**
* @return integer
*/
public function getCountryPrefix()
{
return $this['country_prefix'];
}
public function jsonSerialize()
{
return $this->data;
}
public function jsonUnserialize(array $json)
{
$this->data = $json;
}
public function offsetExists($offset)
{
return isset($this->data[$offset]);
}
public function offsetGet($offset)
{
return $this->data[$offset];
}
public function offsetSet($offset, $value)
{
throw new Exception('Number insights results are read only');
}
public function offsetUnset($offset)
{
throw new Exception('Number insights results are read only');
}
}