CustomerDetails.php 644 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace Braintree\Transaction;
  3. use Braintree\Instance;
  4. /**
  5. * Customer details from a transaction
  6. * Creates an instance of customer details as returned from a transaction
  7. *
  8. * @package Braintree
  9. * @subpackage Transaction
  10. *
  11. * @property-read string $company
  12. * @property-read string $email
  13. * @property-read string $fax
  14. * @property-read string $firstName
  15. * @property-read string $id
  16. * @property-read string $lastName
  17. * @property-read string $phone
  18. * @property-read string $website
  19. */
  20. class CustomerDetails extends Instance
  21. {
  22. }
  23. class_alias('Braintree\Transaction\CustomerDetails', 'Braintree_Transaction_CustomerDetails');