EuropeBankAccountDetails.php 702 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace Braintree\Transaction;
  3. use Braintree\Instance;
  4. /**
  5. * Europe bank account details from a transaction
  6. * Creates an instance of europe bank account details as returned from a transaction
  7. *
  8. * @package Braintree
  9. * @subpackage Transaction
  10. *
  11. * @property-read string $accountHolderName
  12. * @property-read string $bic
  13. * @property-read string $imageUrl
  14. * @property-read string $mandateAcceptedAt
  15. * @property-read string $mandateReferenceNumber
  16. * @property-read string $maskedIban
  17. * @property-read string $token
  18. */
  19. class EuropeBankAccountDetails extends Instance
  20. {
  21. }
  22. class_alias('Braintree\Transaction\EuropeBankAccountDetails', 'Braintree_Transaction_EuropeBankAccountDetails');