AddressDetails.php 704 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace Braintree\Transaction;
  3. use Braintree\Instance;
  4. /**
  5. * Creates an instance of AddressDetails as returned from a transaction
  6. *
  7. *
  8. * @package Braintree
  9. * @subpackage Transaction
  10. *
  11. * @property-read string $firstName
  12. * @property-read string $lastName
  13. * @property-read string $company
  14. * @property-read string $streetAddress
  15. * @property-read string $extendedAddress
  16. * @property-read string $locality
  17. * @property-read string $region
  18. * @property-read string $postalCode
  19. * @property-read string $countryName
  20. */
  21. class AddressDetails extends Instance
  22. {
  23. protected $_attributes = [];
  24. }
  25. class_alias('Braintree\Transaction\AddressDetails', 'Braintree_Transaction_AddressDetails');