Viewing file: NewFactorInstance.php (3.12 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/** * This code was generated by * \ / _ _ _| _ _ * | (_)\/(_)(_|\/| |(/_ v1.0.0 * / / */
namespace Twilio\Rest\Verify\V2\Service\Entity;
use Twilio\Deserialize; use Twilio\Exceptions\TwilioException; use Twilio\InstanceResource; use Twilio\Values; use Twilio\Version;
/** * @property string $sid * @property string $accountSid * @property string $serviceSid * @property string $entitySid * @property string $identity * @property array $binding * @property \DateTime $dateCreated * @property \DateTime $dateUpdated * @property string $friendlyName * @property string $status * @property string $factorType * @property array $config * @property array $metadata * @property string $url */ class NewFactorInstance extends InstanceResource { /** * Initialize the NewFactorInstance * * @param Version $version Version that contains the resource * @param mixed[] $payload The response payload * @param string $serviceSid Service Sid. * @param string $identity Unique external identifier of the Entity */ public function __construct(Version $version, array $payload, string $serviceSid, string $identity) { parent::__construct($version);
// Marshaled Properties $this->properties = [ 'sid' => Values::array_get($payload, 'sid'), 'accountSid' => Values::array_get($payload, 'account_sid'), 'serviceSid' => Values::array_get($payload, 'service_sid'), 'entitySid' => Values::array_get($payload, 'entity_sid'), 'identity' => Values::array_get($payload, 'identity'), 'binding' => Values::array_get($payload, 'binding'), 'dateCreated' => Deserialize::dateTime(Values::array_get($payload, 'date_created')), 'dateUpdated' => Deserialize::dateTime(Values::array_get($payload, 'date_updated')), 'friendlyName' => Values::array_get($payload, 'friendly_name'), 'status' => Values::array_get($payload, 'status'), 'factorType' => Values::array_get($payload, 'factor_type'), 'config' => Values::array_get($payload, 'config'), 'metadata' => Values::array_get($payload, 'metadata'), 'url' => Values::array_get($payload, 'url'), ];
$this->solution = ['serviceSid' => $serviceSid, 'identity' => $identity, ]; }
/** * 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.NewFactorInstance]'; } }
|