128 lines
3.9 KiB
PHP
128 lines
3.9 KiB
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* This code was generated by
|
||
|
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
|
||
|
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
|
||
|
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
|
||
|
*
|
||
|
* Twilio - Verify
|
||
|
* This is the public Twilio REST API.
|
||
|
*
|
||
|
* NOTE: This class is auto generated by OpenAPI Generator.
|
||
|
* https://openapi-generator.tech
|
||
|
* Do not edit the class manually.
|
||
|
*/
|
||
|
|
||
|
|
||
|
namespace Twilio\Rest\Verify\V2\Service;
|
||
|
|
||
|
use Twilio\Exceptions\TwilioException;
|
||
|
use Twilio\Values;
|
||
|
use Twilio\Version;
|
||
|
use Twilio\InstanceContext;
|
||
|
|
||
|
|
||
|
class MessagingConfigurationContext extends InstanceContext
|
||
|
{
|
||
|
/**
|
||
|
* Initialize the MessagingConfigurationContext
|
||
|
*
|
||
|
* @param Version $version Version that contains the resource
|
||
|
* @param string $serviceSid The SID of the [Service](https://www.twilio.com/docs/verify/api/service) that the resource is associated with.
|
||
|
* @param string $country The [ISO-3166-1](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) country code of the country this configuration will be applied to. If this is a global configuration, Country will take the value `all`.
|
||
|
*/
|
||
|
public function __construct(
|
||
|
Version $version,
|
||
|
$serviceSid,
|
||
|
$country
|
||
|
) {
|
||
|
parent::__construct($version);
|
||
|
|
||
|
// Path Solution
|
||
|
$this->solution = [
|
||
|
'serviceSid' =>
|
||
|
$serviceSid,
|
||
|
'country' =>
|
||
|
$country,
|
||
|
];
|
||
|
|
||
|
$this->uri = '/Services/' . \rawurlencode($serviceSid)
|
||
|
.'/MessagingConfigurations/' . \rawurlencode($country)
|
||
|
.'';
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Delete the MessagingConfigurationInstance
|
||
|
*
|
||
|
* @return bool True if delete succeeds, false otherwise
|
||
|
* @throws TwilioException When an HTTP error occurs.
|
||
|
*/
|
||
|
public function delete(): bool
|
||
|
{
|
||
|
|
||
|
return $this->version->delete('DELETE', $this->uri);
|
||
|
}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Fetch the MessagingConfigurationInstance
|
||
|
*
|
||
|
* @return MessagingConfigurationInstance Fetched MessagingConfigurationInstance
|
||
|
* @throws TwilioException When an HTTP error occurs.
|
||
|
*/
|
||
|
public function fetch(): MessagingConfigurationInstance
|
||
|
{
|
||
|
|
||
|
$payload = $this->version->fetch('GET', $this->uri);
|
||
|
|
||
|
return new MessagingConfigurationInstance(
|
||
|
$this->version,
|
||
|
$payload,
|
||
|
$this->solution['serviceSid'],
|
||
|
$this->solution['country']
|
||
|
);
|
||
|
}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Update the MessagingConfigurationInstance
|
||
|
*
|
||
|
* @param string $messagingServiceSid The SID of the [Messaging Service](https://www.twilio.com/docs/sms/services/api) to be used to send SMS to the country of this configuration.
|
||
|
* @return MessagingConfigurationInstance Updated MessagingConfigurationInstance
|
||
|
* @throws TwilioException When an HTTP error occurs.
|
||
|
*/
|
||
|
public function update(string $messagingServiceSid): MessagingConfigurationInstance
|
||
|
{
|
||
|
|
||
|
$data = Values::of([
|
||
|
'MessagingServiceSid' =>
|
||
|
$messagingServiceSid,
|
||
|
]);
|
||
|
|
||
|
$payload = $this->version->update('POST', $this->uri, [], $data);
|
||
|
|
||
|
return new MessagingConfigurationInstance(
|
||
|
$this->version,
|
||
|
$payload,
|
||
|
$this->solution['serviceSid'],
|
||
|
$this->solution['country']
|
||
|
);
|
||
|
}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Provide a friendly representation
|
||
|
*
|
||
|
* @return string Machine friendly representation
|
||
|
*/
|
||
|
public function __toString(): string
|
||
|
{
|
||
|
$context = [];
|
||
|
foreach ($this->solution as $key => $value) {
|
||
|
$context[] = "$key=$value";
|
||
|
}
|
||
|
return '[Twilio.Verify.V2.MessagingConfigurationContext ' . \implode(' ', $context) . ']';
|
||
|
}
|
||
|
}
|