Вход Регистрация
Файл: sngine-v2.8/Script/includes/libs/Twilio/Rest/Preview/TrustedComms/Business/Brand/BrandedChannel/ChannelList.php
Строк: 147
<?php

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

namespace TwilioRestPreviewTrustedCommsBusinessBrandBrandedChannel;

use 
TwilioExceptionsTwilioException;
use 
TwilioListResource;
use 
TwilioValues;
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 ChannelList extends ListResource {
    
/**
     * Construct the ChannelList
     *
     * @param Version $version Version that contains the resource
     * @param string $businessSid Business Sid.
     * @param string $brandSid Brand Sid.
     * @param string $brandedChannelSid Branded Channel Sid.
     */
    
public function __construct(Version $versionstring $businessSidstring $brandSidstring $brandedChannelSid) {
        
parent::__construct($version);

        
// Path Solution
        
$this->solution = [
            
'businessSid' => $businessSid,
            
'brandSid' => $brandSid,
            
'brandedChannelSid' => $brandedChannelSid,
        ];

        
$this->uri '/Businesses/' rawurlencode($businessSid) . '/Brands/' rawurlencode($brandSid) . '/BrandedChannels/' rawurlencode($brandedChannelSid) . '/Channels';
    }

    
/**
     * Create the ChannelInstance
     *
     * @param string $phoneNumberSid Phone Number Sid to be branded.
     * @return ChannelInstance Created ChannelInstance
     * @throws TwilioException When an HTTP error occurs.
     */
    
public function create(string $phoneNumberSid): ChannelInstance {
        
$data Values::of(['PhoneNumberSid' => $phoneNumberSid, ]);

        
$payload $this->version->create('POST'$this->uri, [], $data);

        return new 
ChannelInstance(
            
$this->version,
            
$payload,
            
$this->solution['businessSid'],
            
$this->solution['brandSid'],
            
$this->solution['brandedChannelSid']
        );
    }

    
/**
     * Provide a friendly representation
     *
     * @return string Machine friendly representation
     */
    
public function __toString(): string {
        return 
'[Twilio.Preview.TrustedComms.ChannelList]';
    }
}
Онлайн: 1
Реклама