151 lines
4.3 KiB
PHP
Executable file
151 lines
4.3 KiB
PHP
Executable file
<?php
|
|
|
|
/**
|
|
* This code was generated by
|
|
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
|
|
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
|
|
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
|
|
*
|
|
* Twilio - Sync
|
|
* 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\Sync\V1\Service\SyncMap;
|
|
|
|
use Twilio\Exceptions\TwilioException;
|
|
use Twilio\Options;
|
|
use Twilio\Values;
|
|
use Twilio\Version;
|
|
use Twilio\InstanceContext;
|
|
use Twilio\Serialize;
|
|
|
|
|
|
class SyncMapItemContext extends InstanceContext
|
|
{
|
|
/**
|
|
* Initialize the SyncMapItemContext
|
|
*
|
|
* @param Version $version Version that contains the resource
|
|
* @param string $serviceSid The SID of the [Sync Service](https://www.twilio.com/docs/sync/api/service) to create the Map Item in.
|
|
* @param string $mapSid The SID of the Sync Map to add the new Map Item to. Can be the Sync Map resource's `sid` or its `unique_name`.
|
|
* @param string $key The `key` value of the Sync Map Item resource to delete.
|
|
*/
|
|
public function __construct(
|
|
Version $version,
|
|
$serviceSid,
|
|
$mapSid,
|
|
$key
|
|
) {
|
|
parent::__construct($version);
|
|
|
|
// Path Solution
|
|
$this->solution = [
|
|
'serviceSid' =>
|
|
$serviceSid,
|
|
'mapSid' =>
|
|
$mapSid,
|
|
'key' =>
|
|
$key,
|
|
];
|
|
|
|
$this->uri = '/Services/' . \rawurlencode($serviceSid)
|
|
.'/Maps/' . \rawurlencode($mapSid)
|
|
.'/Items/' . \rawurlencode($key)
|
|
.'';
|
|
}
|
|
|
|
/**
|
|
* Delete the SyncMapItemInstance
|
|
*
|
|
* @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);
|
|
|
|
$headers = Values::of(['If-Match' => $options['ifMatch']]);
|
|
|
|
return $this->version->delete('DELETE', $this->uri, [], [], $headers);
|
|
}
|
|
|
|
|
|
/**
|
|
* Fetch the SyncMapItemInstance
|
|
*
|
|
* @return SyncMapItemInstance Fetched SyncMapItemInstance
|
|
* @throws TwilioException When an HTTP error occurs.
|
|
*/
|
|
public function fetch(): SyncMapItemInstance
|
|
{
|
|
|
|
$payload = $this->version->fetch('GET', $this->uri);
|
|
|
|
return new SyncMapItemInstance(
|
|
$this->version,
|
|
$payload,
|
|
$this->solution['serviceSid'],
|
|
$this->solution['mapSid'],
|
|
$this->solution['key']
|
|
);
|
|
}
|
|
|
|
|
|
/**
|
|
* Update the SyncMapItemInstance
|
|
*
|
|
* @param array|Options $options Optional Arguments
|
|
* @return SyncMapItemInstance Updated SyncMapItemInstance
|
|
* @throws TwilioException When an HTTP error occurs.
|
|
*/
|
|
public function update(array $options = []): SyncMapItemInstance
|
|
{
|
|
|
|
$options = new Values($options);
|
|
|
|
$data = Values::of([
|
|
'Data' =>
|
|
Serialize::jsonObject($options['data']),
|
|
'Ttl' =>
|
|
$options['ttl'],
|
|
'ItemTtl' =>
|
|
$options['itemTtl'],
|
|
'CollectionTtl' =>
|
|
$options['collectionTtl'],
|
|
]);
|
|
|
|
$headers = Values::of(['If-Match' => $options['ifMatch']]);
|
|
|
|
$payload = $this->version->update('POST', $this->uri, [], $data, $headers);
|
|
|
|
return new SyncMapItemInstance(
|
|
$this->version,
|
|
$payload,
|
|
$this->solution['serviceSid'],
|
|
$this->solution['mapSid'],
|
|
$this->solution['key']
|
|
);
|
|
}
|
|
|
|
|
|
/**
|
|
* 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.Sync.V1.SyncMapItemContext ' . \implode(' ', $context) . ']';
|
|
}
|
|
}
|