123456789101112131415161718192021222324252627 |
- <?php
- namespace Braintree\Transaction;
- use Braintree\Instance;
- /**
- * Creates an instance of AddressDetails as returned from a transaction
- *
- *
- * @package Braintree
- * @subpackage Transaction
- *
- * @property-read string $firstName
- * @property-read string $lastName
- * @property-read string $company
- * @property-read string $streetAddress
- * @property-read string $extendedAddress
- * @property-read string $locality
- * @property-read string $region
- * @property-read string $postalCode
- * @property-read string $countryName
- */
- class AddressDetails extends Instance
- {
- protected $_attributes = [];
- }
- class_alias('Braintree\Transaction\AddressDetails', 'Braintree_Transaction_AddressDetails');
|