Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/app/code/Amasty/ExportCore/Api/Config/Profile/
Upload File :
Current File : //home/rtorresani/www/app/code/Amasty/ExportCore/Api/Config/Profile/FieldsConfigInterface.php

<?php
/**
 * @author Amasty Team
 * @copyright Copyright (c) Amasty (https://www.amasty.com)
 * @package Export Core for Magento 2 (System)
 */

namespace Amasty\ExportCore\Api\Config\Profile;

interface FieldsConfigInterface extends \Magento\Framework\Api\ExtensibleDataInterface
{
    /**
     * @return string|null
     */
    public function getName(): ?string;

    /**
     * @param string $name
     *
     * @return \Amasty\ExportCore\Api\Config\Profile\FieldsConfigInterface
     */
    public function setName(string $name): FieldsConfigInterface;

    /**
     * @return string|null
     */
    public function getMap(): ?string;

    /**
     * @param string $map
     *
     * @return \Amasty\ExportCore\Api\Config\Profile\FieldsConfigInterface
     */
    public function setMap(string $map): FieldsConfigInterface;

    /**
     * @return \Amasty\ExportCore\Api\Config\Profile\FieldInterface[]
     */
    public function getFields(): ?array;

    /**
     * @param \Amasty\ExportCore\Api\Config\Profile\FieldInterface[] $fields
     *
     * @return \Amasty\ExportCore\Api\Config\Profile\FieldsConfigInterface
     */
    public function setFields(?array $fields): FieldsConfigInterface;

    /**
     * @return \Amasty\ExportCore\Api\Config\Profile\FieldFilterInterface[]|null
     */
    public function getFilters(): ?array;

    /**
     * @param \Amasty\ExportCore\Api\Config\Profile\FieldFilterInterface[]|null $filters
     *
     * @return \Amasty\ExportCore\Api\Config\Profile\FieldsConfigInterface
     */
    public function setFilters(?array $filters): FieldsConfigInterface;

    /**
     * @return bool|null
     */
    public function isExcludeRowIfNoResultsFound(): ?bool;

    /**
     * @param bool|null $isExcludeRowIfNoResultsFound
     *
     * @return \Amasty\ExportCore\Api\Config\Profile\FieldsConfigInterface
     */
    public function setIsExcludeRowIfNoResultsFound(?bool $isExcludeRowIfNoResultsFound): FieldsConfigInterface;

    /**
     * @return \Amasty\ExportCore\Api\Config\Profile\FieldsConfigInterface[]
     */
    public function getSubEntitiesFieldsConfig(): ?array;

    /**
     * @param \Amasty\ExportCore\Api\Config\Profile\FieldsConfigInterface[] $subentitesFieldsConfig
     *
     * @return \Amasty\ExportCore\Api\Config\Profile\FieldsConfigInterface
     */
    public function setSubEntitiesFieldsConfig(?array $subentitesFieldsConfig): FieldsConfigInterface;

    /**
     * @return \Amasty\ExportCore\Api\Config\Profile\FieldsConfigExtensionInterface
     */
    public function getExtensionAttributes(): \Amasty\ExportCore\Api\Config\Profile\FieldsConfigExtensionInterface;

    /**
     * @param \Amasty\ExportCore\Api\Config\Profile\FieldsConfigExtensionInterface $extensionAttributes
     *
     * @return \Amasty\ExportCore\Api\Config\Profile\FieldsConfigInterface
     */
    public function setExtensionAttributes(
        \Amasty\ExportCore\Api\Config\Profile\FieldsConfigExtensionInterface $extensionAttributes
    ): FieldsConfigInterface;
}