AddressMetadataManagementInterface.php 373 B

12345678910111213141516
  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 managing customer address attributes metadata.
  9. * @api
  10. * @since 100.0.2
  11. */
  12. interface AddressMetadataManagementInterface extends MetadataManagementInterface
  13. {
  14. const ENTITY_TYPE_ADDRESS = 'customer_address';
  15. }