-
Notifications
You must be signed in to change notification settings - Fork 558
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Librarian] Regenerated @ c9ac9b9736431d573d8dec29ad3095eee969cdea
- Loading branch information
Showing
40 changed files
with
735 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
<?php | ||
|
||
/** | ||
* This code was generated by | ||
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __ | ||
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/ | ||
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \ | ||
* | ||
* Twilio - Api | ||
* 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\Api\V2010; | ||
|
||
use Twilio\Exceptions\TwilioException; | ||
use Twilio\InstanceResource; | ||
use Twilio\Values; | ||
use Twilio\Version; | ||
|
||
|
||
/** | ||
* @property string|null $sid | ||
* @property string|null $phoneNumber | ||
*/ | ||
class SafelistInstance extends InstanceResource | ||
{ | ||
/** | ||
* Initialize the SafelistInstance | ||
* | ||
* @param Version $version Version that contains the resource | ||
* @param mixed[] $payload The response payload | ||
*/ | ||
public function __construct(Version $version, array $payload) | ||
{ | ||
parent::__construct($version); | ||
|
||
// Marshaled Properties | ||
$this->properties = [ | ||
'sid' => Values::array_get($payload, 'sid'), | ||
'phoneNumber' => Values::array_get($payload, 'phone_number'), | ||
]; | ||
|
||
$this->solution = []; | ||
} | ||
|
||
/** | ||
* Magic getter to access properties | ||
* | ||
* @param string $name Property to access | ||
* @return mixed The requested property | ||
* @throws TwilioException For unknown properties | ||
*/ | ||
public function __get(string $name) | ||
{ | ||
if (\array_key_exists($name, $this->properties)) { | ||
return $this->properties[$name]; | ||
} | ||
|
||
if (\property_exists($this, '_' . $name)) { | ||
$method = 'get' . \ucfirst($name); | ||
return $this->$method(); | ||
} | ||
|
||
throw new TwilioException('Unknown property: ' . $name); | ||
} | ||
|
||
/** | ||
* Provide a friendly representation | ||
* | ||
* @return string Machine friendly representation | ||
*/ | ||
public function __toString(): string | ||
{ | ||
return '[Twilio.Api.V2010.SafelistInstance]'; | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
<?php | ||
|
||
/** | ||
* This code was generated by | ||
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __ | ||
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/ | ||
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \ | ||
* | ||
* Twilio - Api | ||
* 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\Api\V2010; | ||
|
||
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.json'; | ||
} | ||
|
||
/** | ||
* 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.Api.V2010.SafelistList]'; | ||
} | ||
} |
Oops, something went wrong.