Вход Регистрация
Файл: sngine-v2.8/Script/includes/libs/Twilio/Rest/Api/V2010/Account/Call/PaymentContext.php
Строк: 137
<?php

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

namespace TwilioRestApiV2010AccountCall;

use 
TwilioExceptionsTwilioException;
use 
TwilioInstanceContext;
use 
TwilioOptions;
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 PaymentContext extends InstanceContext {
    
/**
     * Initialize the PaymentContext
     *
     * @param Version $version Version that contains the resource
     * @param string $accountSid The SID of the Account that will update the
     *                           resource
     * @param string $callSid The SID of the call that will create the resource.
     * @param string $sid The SID of Payments session
     */
    
public function __construct(Version $version$accountSid$callSid$sid) {
        
parent::__construct($version);

        
// Path Solution
        
$this->solution = ['accountSid' => $accountSid'callSid' => $callSid'sid' => $sid, ];

        
$this->uri '/Accounts/' rawurlencode($accountSid) . '/Calls/' rawurlencode($callSid) . '/Payments/' rawurlencode($sid) . '.json';
    }

    
/**
     * Update the PaymentInstance
     *
     * @param string $idempotencyKey A unique token for each payment session that
     *                               should be provided to maintain idempotency of
     *                               the session.
     * @param string $statusCallback The URL we should call to send status of
     *                               payment session.
     * @param array|Options $options Optional Arguments
     * @return PaymentInstance Updated PaymentInstance
     * @throws TwilioException When an HTTP error occurs.
     */
    
public function update(string $idempotencyKeystring $statusCallback, array $options = []): PaymentInstance {
        
$options = new Values($options);

        
$data Values::of([
            
'IdempotencyKey' => $idempotencyKey,
            
'StatusCallback' => $statusCallback,
            
'Capture' => $options['capture'],
            
'Status' => $options['status'],
        ]);

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

        return new 
PaymentInstance(
            
$this->version,
            
$payload,
            
$this->solution['accountSid'],
            
$this->solution['callSid'],
            
$this->solution['sid']
        );
    }

    
/**
     * 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.Api.V2010.PaymentContext ' implode(' '$context) . ']';
    }
}
Онлайн: 3
Реклама