Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/app/code/Amasty/Base/Model/Feed/Response/
Upload File :
Current File : //home/rtorresani/www/app/code/Amasty/Base/Model/Feed/Response/FeedResponseInterface.php

<?php

declare(strict_types=1);

/**
 * @author Amasty Team
 * @copyright Copyright (c) Amasty (https://www.amasty.com)
 * @package Magento 2 Base Package
 */

namespace Amasty\Base\Model\Feed\Response;

interface FeedResponseInterface
{
    public function getContent(): ?string;

    public function setContent(?string $content): FeedResponseInterface;

    public function getStatus(): ?string;

    public function setStatus(?string $status): FeedResponseInterface;

    public function isNeedToUpdateCache(): bool;

    public function isFailed(): bool;
}