/home/techb158/dev.balacoffee.com/vendor/twilio/sdk/src/Twilio/Rest/Voice/V1
NameSizeModeActions
ConnectionPolicy/-0755rm
DialingPermissions/-0755rm
ArchivedCallContext.php16500644editdlrm
ArchivedCallInstance.php32380644editdlrm
ArchivedCallList.php12130644editdlrm
ArchivedCallPage.php12850644editdlrm
ByocTrunkContext.php30400644editdlrm
ByocTrunkInstance.php49640644editdlrm
ByocTrunkList.php59060644editdlrm
ByocTrunkOptions.php192610644editdlrm
ByocTrunkPage.php11540644editdlrm
ConnectionPolicyContext.php42030644editdlrm
ConnectionPolicyInstance.php43230644editdlrm
ConnectionPolicyList.php54430644editdlrm
ConnectionPolicyOptions.php28850644editdlrm
ConnectionPolicyPage.php11960644editdlrm
DialingPermissionsInstance.php16710644editdlrm
DialingPermissionsList.php35530644editdlrm
DialingPermissionsPage.php14110644editdlrm
IpRecordContext.php23860644editdlrm
IpRecordInstance.php40780644editdlrm
IpRecordList.php54700644editdlrm
IpRecordOptions.php44940644editdlrm
IpRecordPage.php11480644editdlrm
SourceIpMappingContext.php24450644editdlrm
SourceIpMappingInstance.php39860644editdlrm
SourceIpMappingList.php55040644editdlrm
SourceIpMappingPage.php11900644editdlrm
Edit: /home/techb158/dev.balacoffee.com/vendor/twilio/sdk/src/Twilio/Rest/Voice/V1/IpRecordOptions.php (4494B)
options['friendlyName'] = $friendlyName; $this->options['cidrPrefixLength'] = $cidrPrefixLength; } /** * A descriptive string that you create to describe the resource. It is not unique and can be up to 255 characters long. * * @param string $friendlyName A string to describe the resource * @return $this Fluent Builder */ public function setFriendlyName(string $friendlyName): self { $this->options['friendlyName'] = $friendlyName; return $this; } /** * An integer representing the length of the [CIDR](https://tools.ietf.org/html/rfc4632) prefix to use with this IP address. By default the entire IP address is used, which for IPv4 is value 32. * * @param int $cidrPrefixLength An integer representing the length of the * [CIDR](https://tools.ietf.org/html/rfc4632) * prefix to use with this IP address. By default * the entire IP address is used, which for IPv4 * is value 32. * @return $this Fluent Builder */ public function setCidrPrefixLength(int $cidrPrefixLength): self { $this->options['cidrPrefixLength'] = $cidrPrefixLength; 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.Voice.V1.CreateIpRecordOptions ' . $options . ']'; } } class UpdateIpRecordOptions extends Options { /** * @param string $friendlyName A string to describe the resource */ public function __construct(string $friendlyName = Values::NONE) { $this->options['friendlyName'] = $friendlyName; } /** * A descriptive string that you create to describe the resource. It is not unique and can be up to 255 characters long. * * @param string $friendlyName A string to describe the 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.Voice.V1.UpdateIpRecordOptions ' . $options . ']'; } }