Файл: sngine-v2.8/Script/includes/libs/Twilio/Rest/Voice/V1/DialingPermissions/SettingsList.php
Строк: 60
<?php
/**
 * This code was generated by
 *  / _    _  _|   _  _
 * | (_)/(_)(_|/| |(/_  v1.0.0
 * /       /
 */
namespace TwilioRestVoiceV1DialingPermissions;
use TwilioListResource;
use TwilioVersion;
/**
 * 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 SettingsList extends ListResource {
    /**
     * Construct the SettingsList
     *
     * @param Version $version Version that contains the resource
     */
    public function __construct(Version $version) {
        parent::__construct($version);
        // Path Solution
        $this->solution = [];
    }
    /**
     * Constructs a SettingsContext
     */
    public function getContext(): SettingsContext {
        return new SettingsContext($this->version);
    }
    /**
     * Provide a friendly representation
     *
     * @return string Machine friendly representation
     */
    public function __toString(): string {
        return '[Twilio.Voice.V1.SettingsList]';
    }
}