File "SafelistList.php"
Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/twilio/sdk/src/Twilio/Rest/Accounts/V1/SafelistList.php
File size: 3.06 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* Twilio - Accounts
* 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\Accounts\V1;
use Twilio\Exceptions\TwilioException;
use Twilio\ListResource;
use Twilio\Options;
use Twilio\Values;
use Twilio\Version;
class SafelistList extends ListResource
{
/**
* Construct the SafelistList
*
* @param Version $version Version that contains the resource
*/
public function __construct(
Version $version
) {
parent::__construct($version);
// Path Solution
$this->solution = [
];
$this->uri = '/SafeList/Numbers';
}
/**
* Create the SafelistInstance
*
* @param string $phoneNumber The phone number to be added in SafeList. Phone numbers must be in [E.164 format](https://www.twilio.com/docs/glossary/what-e164).
* @return SafelistInstance Created SafelistInstance
* @throws TwilioException When an HTTP error occurs.
*/
public function create(string $phoneNumber): SafelistInstance
{
$data = Values::of([
'PhoneNumber' =>
$phoneNumber,
]);
$payload = $this->version->create('POST', $this->uri, [], $data);
return new SafelistInstance(
$this->version,
$payload
);
}
/**
* Delete the SafelistInstance
*
* @param array|Options $options Optional Arguments
* @return bool True if delete succeeds, false otherwise
* @throws TwilioException When an HTTP error occurs.
*/
public function delete(array $options = []): bool
{
$options = new Values($options);
$params = Values::of([
'PhoneNumber' =>
$options['phoneNumber'],
]);
return $this->version->delete('DELETE', $this->uri, $params);
}
/**
* Fetch the SafelistInstance
*
* @param array|Options $options Optional Arguments
* @return SafelistInstance Fetched SafelistInstance
* @throws TwilioException When an HTTP error occurs.
*/
public function fetch(array $options = []): SafelistInstance
{
$options = new Values($options);
$params = Values::of([
'PhoneNumber' =>
$options['phoneNumber'],
]);
$payload = $this->version->fetch('GET', $this->uri, $params, []);
return new SafelistInstance(
$this->version,
$payload
);
}
/**
* Provide a friendly representation
*
* @return string Machine friendly representation
*/
public function __toString(): string
{
return '[Twilio.Accounts.V1.SafelistList]';
}
}