/home/desid573/public_html/app/twilio-php-master/Twilio/Rest/Lookups/V1
Edit: /home/desid573/public_html/app/twilio-php-master/Twilio/Rest/Lookups/V1/PhoneNumberOptions.php (2717B)
options['countryCode'] = $countryCode;
$this->options['type'] = $type;
$this->options['addOns'] = $addOns;
$this->options['addOnsData'] = $addOnsData;
}
/**
* The country_code
*
* @param string $countryCode The country_code
* @return $this Fluent Builder
*/
public function setCountryCode($countryCode) {
$this->options['countryCode'] = $countryCode;
return $this;
}
/**
* The type
*
* @param string $type The type
* @return $this Fluent Builder
*/
public function setType($type) {
$this->options['type'] = $type;
return $this;
}
/**
* The add_ons
*
* @param string $addOns The add_ons
* @return $this Fluent Builder
*/
public function setAddOns($addOns) {
$this->options['addOns'] = $addOns;
return $this;
}
/**
* The add_ons_data
*
* @param string $addOnsData The add_ons_data
* @return $this Fluent Builder
*/
public function setAddOnsData($addOnsData) {
$this->options['addOnsData'] = $addOnsData;
return $this;
}
/**
* Provide a friendly representation
*
* @return string Machine friendly representation
*/
public function __toString() {
$options = array();
foreach ($this->options as $key => $value) {
if ($value != Values::NONE) {
$options[] = "$key=$value";
}
}
return '[Twilio.Lookups.V1.FetchPhoneNumberOptions ' . implode(' ', $options) . ']';
}
}