AddressMetadataInterface.php 499 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Customer\Api;
  7. /**
  8. * Interface for retrieval information about customer address attributes metadata.
  9. * @api
  10. * @since 100.0.2
  11. */
  12. interface AddressMetadataInterface extends MetadataInterface
  13. {
  14. const ATTRIBUTE_SET_ID_ADDRESS = 2;
  15. const ENTITY_TYPE_ADDRESS = 'customer_address';
  16. const DATA_INTERFACE_NAME = \Magento\Customer\Api\Data\AddressInterface::class;
  17. }