CustomAttributeListInterface.php 419 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Quote\Model\Quote\Address;
  7. /**
  8. * Interface \Magento\Quote\Model\Quote\Address\CustomAttributeListInterface
  9. *
  10. */
  11. interface CustomAttributeListInterface
  12. {
  13. /**
  14. * Retrieve list of quote address custom attributes
  15. *
  16. * @return array
  17. */
  18. public function getAttributes();
  19. }