/home/techb158/dev.balacoffee.com/vendor/twilio/sdk/src/Twilio/Rest/Routes/V2
NameSizeModeActions
PhoneNumberContext.php22490644editdlrm
PhoneNumberInstance.php38740644editdlrm
PhoneNumberList.php10060644editdlrm
PhoneNumberOptions.php23440644editdlrm
PhoneNumberPage.php11690644editdlrm
SipDomainContext.php22050644editdlrm
SipDomainInstance.php38240644editdlrm
SipDomainList.php9860644editdlrm
SipDomainOptions.php18930644editdlrm
SipDomainPage.php11570644editdlrm
TrunkContext.php21830644editdlrm
TrunkInstance.php38090644editdlrm
TrunkList.php9760644editdlrm
TrunkOptions.php22960644editdlrm
TrunkPage.php11330644editdlrm
Edit: /home/techb158/dev.balacoffee.com/vendor/twilio/sdk/src/Twilio/Rest/Routes/V2/TrunkOptions.php (2296B)
options['voiceRegion'] = $voiceRegion; $this->options['friendlyName'] = $friendlyName; } /** * The Inbound Processing Region used for this SIP Trunk for voice * * @param string $voiceRegion The Inbound Processing Region used for this SIP * Trunk for voice * @return $this Fluent Builder */ public function setVoiceRegion(string $voiceRegion): self { $this->options['voiceRegion'] = $voiceRegion; return $this; } /** * A human readable description of this resource, up to 64 characters. * * @param string $friendlyName A human readable description of this resource. * @return $this Fluent Builder */ public function setFriendlyName(string $friendlyName): self { $this->options['friendlyName'] = $friendlyName; return $this; } /** * Provide a friendly representation * * @return string Machine friendly representation */ public function __toString(): string { $options = \http_build_query(Values::of($this->options), '', ' '); return '[Twilio.Routes.V2.UpdateTrunkOptions ' . $options . ']'; } }