/home/desid573/public_html/app/twilio-php-master/Twilio/Rest/Accounts/V1/Credential
NameSizeModeActions
AwsContext.php22950644editdlrm
AwsInstance.php36980644editdlrm
AwsList.php53990644editdlrm
AwsOptions.php31050644editdlrm
AwsPage.php7220644editdlrm
PublicKeyContext.php24030644editdlrm
PublicKeyInstance.php38790644editdlrm
PublicKeyList.php55700644editdlrm
PublicKeyOptions.php37600644editdlrm
PublicKeyPage.php7400644editdlrm
Edit: /home/desid573/public_html/app/twilio-php-master/Twilio/Rest/Accounts/V1/Credential/AwsOptions.php (3105B)
options['friendlyName'] = $friendlyName; $this->options['accountSid'] = $accountSid; } /** * The friendly_name * * @param string $friendlyName The friendly_name * @return $this Fluent Builder */ public function setFriendlyName($friendlyName) { $this->options['friendlyName'] = $friendlyName; return $this; } /** * The account_sid * * @param string $accountSid The account_sid * @return $this Fluent Builder */ public function setAccountSid($accountSid) { $this->options['accountSid'] = $accountSid; 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.Accounts.V1.CreateAwsOptions ' . implode(' ', $options) . ']'; } } class UpdateAwsOptions extends Options { /** * @param string $friendlyName The friendly_name */ public function __construct($friendlyName = Values::NONE) { $this->options['friendlyName'] = $friendlyName; } /** * The friendly_name * * @param string $friendlyName The friendly_name * @return $this Fluent Builder */ public function setFriendlyName($friendlyName) { $this->options['friendlyName'] = $friendlyName; 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.Accounts.V1.UpdateAwsOptions ' . implode(' ', $options) . ']'; } }