20 lines
568 B
PHP
Executable File
20 lines
568 B
PHP
Executable File
<?php
|
|
namespace Magento\Catalog\Api\Data;
|
|
|
|
/**
|
|
* ExtensionInterface class for @see \Magento\Catalog\Api\Data\CustomOptionInterface
|
|
*/
|
|
interface CustomOptionExtensionInterface extends \Magento\Framework\Api\ExtensionAttributesInterface
|
|
{
|
|
/**
|
|
* @return \Magento\Framework\Api\Data\ImageContentInterface|null
|
|
*/
|
|
public function getFileInfo();
|
|
|
|
/**
|
|
* @param \Magento\Framework\Api\Data\ImageContentInterface $fileInfo
|
|
* @return $this
|
|
*/
|
|
public function setFileInfo(\Magento\Framework\Api\Data\ImageContentInterface $fileInfo);
|
|
}
|