Вход Регистрация
Файл: sngine-v2.8/Script/includes/libs/Twilio/Rest/Verify/V2/Service/VerificationCheckInstance.php
Строк: 95
<?php

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

namespace TwilioRestVerifyV2Service;

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

/**
 * @property string $sid
 * @property string $serviceSid
 * @property string $accountSid
 * @property string $to
 * @property string $channel
 * @property string $status
 * @property bool $valid
 * @property string $amount
 * @property string $payee
 * @property DateTime $dateCreated
 * @property DateTime $dateUpdated
 */
class VerificationCheckInstance extends InstanceResource {
    
/**
     * Initialize the VerificationCheckInstance
     *
     * @param Version $version Version that contains the resource
     * @param mixed[] $payload The response payload
     * @param string $serviceSid The SID of the Service that the resource is
     *                           associated with
     */
    
public function __construct(Version $version, array $payloadstring $serviceSid) {
        
parent::__construct($version);

        
// Marshaled Properties
        
$this->properties = [
            
'sid' => Values::array_get($payload'sid'),
            
'serviceSid' => Values::array_get($payload'service_sid'),
            
'accountSid' => Values::array_get($payload'account_sid'),
            
'to' => Values::array_get($payload'to'),
            
'channel' => Values::array_get($payload'channel'),
            
'status' => Values::array_get($payload'status'),
            
'valid' => Values::array_get($payload'valid'),
            
'amount' => Values::array_get($payload'amount'),
            
'payee' => Values::array_get($payload'payee'),
            
'dateCreated' => Deserialize::dateTime(Values::array_get($payload'date_created')),
            
'dateUpdated' => Deserialize::dateTime(Values::array_get($payload'date_updated')),
        ];

        
$this->solution = ['serviceSid' => $serviceSid, ];
    }

    
/**
     * 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 {
        return 
'[Twilio.Verify.V2.VerificationCheckInstance]';
    }
}
Онлайн: 3
Реклама