Вход Регистрация
Файл: sngine-v2.8/Script/includes/libs/Twilio/Rest/Sync/V1/Service/SyncList/SyncListPermissionInstance.php
Строк: 225
<?php

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

namespace TwilioRestSyncV1ServiceSyncList;

use 
TwilioExceptionsTwilioException;
use 
TwilioInstanceResource;
use 
TwilioValues;
use 
TwilioVersion;

/**
 * PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
 *
 * @property string $accountSid
 * @property string $serviceSid
 * @property string $listSid
 * @property string $identity
 * @property bool $read
 * @property bool $write
 * @property bool $manage
 * @property string $url
 */
class SyncListPermissionInstance extends InstanceResource {
    
/**
     * Initialize the SyncListPermissionInstance
     *
     * @param Version $version Version that contains the resource
     * @param mixed[] $payload The response payload
     * @param string $serviceSid The SID of the Sync Service that the resource is
     *                           associated with
     * @param string $listSid The SID of the Sync List to which the Permission
     *                        applies
     * @param string $identity The application-defined string that uniquely
     *                         identifies the User's Sync List Permission resource
     *                         to fetch
     */
    
public function __construct(Version $version, array $payloadstring $serviceSidstring $listSidstring $identity null) {
        
parent::__construct($version);

        
// Marshaled Properties
        
$this->properties = [
            
'accountSid' => Values::array_get($payload'account_sid'),
            
'serviceSid' => Values::array_get($payload'service_sid'),
            
'listSid' => Values::array_get($payload'list_sid'),
            
'identity' => Values::array_get($payload'identity'),
            
'read' => Values::array_get($payload'read'),
            
'write' => Values::array_get($payload'write'),
            
'manage' => Values::array_get($payload'manage'),
            
'url' => Values::array_get($payload'url'),
        ];

        
$this->solution = [
            
'serviceSid' => $serviceSid,
            
'listSid' => $listSid,
            
'identity' => $identity ?: $this->properties['identity'],
        ];
    }

    
/**
     * Generate an instance context for the instance, the context is capable of
     * performing various actions.  All instance actions are proxied to the context
     *
     * @return SyncListPermissionContext Context for this SyncListPermissionInstance
     */
    
protected function proxy(): SyncListPermissionContext {
        if (!
$this->context) {
            
$this->context = new SyncListPermissionContext(
                
$this->version,
                
$this->solution['serviceSid'],
                
$this->solution['listSid'],
                
$this->solution['identity']
            );
        }

        return 
$this->context;
    }

    
/**
     * Fetch the SyncListPermissionInstance
     *
     * @return SyncListPermissionInstance Fetched SyncListPermissionInstance
     * @throws TwilioException When an HTTP error occurs.
     */
    
public function fetch(): SyncListPermissionInstance {
        return 
$this->proxy()->fetch();
    }

    
/**
     * Delete the SyncListPermissionInstance
     *
     * @return bool True if delete succeeds, false otherwise
     * @throws TwilioException When an HTTP error occurs.
     */
    
public function delete(): bool {
        return 
$this->proxy()->delete();
    }

    
/**
     * Update the SyncListPermissionInstance
     *
     * @param bool $read Read access
     * @param bool $write Write access
     * @param bool $manage Manage access
     * @return SyncListPermissionInstance Updated SyncListPermissionInstance
     * @throws TwilioException When an HTTP error occurs.
     */
    
public function update(bool $readbool $writebool $manage): SyncListPermissionInstance {
        return 
$this->proxy()->update($read$write$manage);
    }

    
/**
     * 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 {
        
$context = [];
        foreach (
$this->solution as $key => $value) {
            
$context[] = "$key=$value";
        }
        return 
'[Twilio.Sync.V1.SyncListPermissionInstance ' implode(' '$context) . ']';
    }
}
Онлайн: 2
Реклама