/home/desid573/public_html/angel/twilio-php-master/Twilio/Rest/Pricing/V1/Voice
Edit: /home/desid573/public_html/angel/twilio-php-master/Twilio/Rest/Pricing/V1/Voice/CountryInstance.php (3261B)
properties = array(
'country' => Values::array_get($payload, 'country'),
'isoCountry' => Values::array_get($payload, 'iso_country'),
'url' => Values::array_get($payload, 'url'),
'outboundPrefixPrices' => Values::array_get($payload, 'outbound_prefix_prices'),
'inboundCallPrices' => Values::array_get($payload, 'inbound_call_prices'),
'priceUnit' => Values::array_get($payload, 'price_unit'),
);
$this->solution = array('isoCountry' => $isoCountry ?: $this->properties['isoCountry'], );
}
/**
* Generate an instance context for the instance, the context is capable of
* performing various actions. All instance actions are proxied to the context
*
* @return \Twilio\Rest\Pricing\V1\Voice\CountryContext Context for this
* CountryInstance
*/
protected function proxy() {
if (!$this->context) {
$this->context = new CountryContext($this->version, $this->solution['isoCountry']);
}
return $this->context;
}
/**
* Fetch a CountryInstance
*
* @return CountryInstance Fetched CountryInstance
*/
public function fetch() {
return $this->proxy()->fetch();
}
/**
* Magic getter to access properties
*
* @param string $name Property to access
* @return mixed The requested property
* @throws TwilioException For unknown properties
*/
public function __get($name) {
if (array_key_exists($name, $this->properties)) {
return $this->properties[$name];
}
if (property_exists($this, '_' . $name)) {
$method = 'get' . ucfirst($name);
return $this->$method();
}
throw new TwilioException('Unknown property: ' . $name);
}
/**
* Provide a friendly representation
*
* @return string Machine friendly representation
*/
public function __toString() {
$context = array();
foreach ($this->solution as $key => $value) {
$context[] = "$key=$value";
}
return '[Twilio.Pricing.V1.CountryInstance ' . implode(' ', $context) . ']';
}
}