<?php
namespace Braintree;
/**
* @property-read string $enrolled
* @property-read boolean $liabilityShiftPossible
* @property-read string $status
*/
class ThreeDSecureInfo extends Base
{
public static function factory($attributes)
{
$instance = new self();
$instance->_initialize($attributes);
return $instance;
}
protected function _initialize($attributes)
{
$this->_attributes = $attributes;
}
/**
* returns a string representation of the three d secure info
* @return string
*/
public function __toString()
{
return __CLASS__ . '[' .
Util::attributesToString($this->_attributes) .']';
}
}
class_alias('Braintree\ThreeDSecureInfo', 'Braintree_ThreeDSecureInfo');