1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?php
- namespace Braintree;
- /**
- * Braintree AndroidPayCard module
- * Creates and manages Braintree Android Pay cards
- *
- * <b>== More information ==</b>
- *
- * See {@link https://developers.braintreepayments.com/javascript+php}<br />
- *
- * @package Braintree
- * @category Resources
- *
- * @property-read string $bin
- * @property-read string $cardType
- * @property-read string $createdAt
- * @property-read string $customerId
- * @property-read string $default
- * @property-read string $expirationMonth
- * @property-read string $expirationYear
- * @property-read string $googleTransactionId
- * @property-read string $imageUrl
- * @property-read string $last4
- * @property-read string $sourceCardLast4
- * @property-read string $sourceCardType
- * @property-read string $sourceDescription
- * @property-read string $token
- * @property-read string $updatedAt
- * @property-read string $virtualCardLast4
- * @property-read string $virtualCardType
- */
- class AndroidPayCard extends Base
- {
- /* instance methods */
- /**
- * returns false if default is null or false
- *
- * @return boolean
- */
- public function isDefault()
- {
- return $this->default;
- }
- /**
- * factory method: returns an instance of AndroidPayCard
- * to the requesting method, with populated properties
- *
- * @ignore
- * @return AndroidPayCard
- */
- public static function factory($attributes)
- {
- $defaultAttributes = [
- 'expirationMonth' => '',
- 'expirationYear' => '',
- 'last4' => $attributes['virtualCardLast4'],
- 'cardType' => $attributes['virtualCardType'],
- ];
- $instance = new self();
- $instance->_initialize(array_merge($defaultAttributes, $attributes));
- return $instance;
- }
- /**
- * sets instance properties from an array of values
- *
- * @access protected
- * @param array $androidPayCardAttribs array of Android Pay card properties
- * @return void
- */
- protected function _initialize($androidPayCardAttribs)
- {
- // set the attributes
- $this->_attributes = $androidPayCardAttribs;
- $subscriptionArray = [];
- if (isset($androidPayCardAttribs['subscriptions'])) {
- foreach ($androidPayCardAttribs['subscriptions'] AS $subscription) {
- $subscriptionArray[] = Subscription::factory($subscription);
- }
- }
- $this->_set('subscriptions', $subscriptionArray);
- }
- }
- class_alias('Braintree\AndroidPayCard', 'Braintree_AndroidPayCard');
|