Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/module-customer/Api/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-customer/Api/MetadataManagementInterface.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Customer\Api;

use Magento\Customer\Api\Data\AttributeMetadataInterface;

/**
 * Interface for managing attributes metadata.
 * @api
 * @since 100.0.2
 */
interface MetadataManagementInterface
{
    /**
     * Check whether attribute is searchable in admin grid and it is allowed
     *
     * @param AttributeMetadataInterface $attribute
     * @return bool
     * @throws \Magento\Framework\Exception\NoSuchEntityException
     */
    public function canBeSearchableInGrid(AttributeMetadataInterface $attribute);

    /**
     * Check whether attribute is filterable in admin grid and it is allowed
     *
     * @param AttributeMetadataInterface $attribute
     * @return bool
     * @throws \Magento\Framework\Exception\NoSuchEntityException
     */
    public function canBeFilterableInGrid(AttributeMetadataInterface $attribute);
}