CustomerMetadataInterface.php 487 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 attributes metadata.
  9. * @api
  10. * @since 100.0.2
  11. */
  12. interface CustomerMetadataInterface extends MetadataInterface
  13. {
  14. const ATTRIBUTE_SET_ID_CUSTOMER = 1;
  15. const ENTITY_TYPE_CUSTOMER = 'customer';
  16. const DATA_INTERFACE_NAME = \Magento\Customer\Api\Data\CustomerInterface::class;
  17. }