1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Sales\Api\Data;
- use Magento\Framework\Api\ExtensibleDataInterface;
- /**
- * Interface ShipmentCommentCreationInterface
- * @api
- * @since 100.1.2
- */
- interface ShipmentCommentCreationInterface extends ExtensibleDataInterface, CommentInterface
- {
- /**
- * Retrieve existing extension attributes object or create a new one.
- *
- * @return \Magento\Sales\Api\Data\ShipmentCommentCreationExtensionInterface|null
- * @since 100.1.2
- */
- public function getExtensionAttributes();
- /**
- * Set an extension attributes object.
- *
- * @param \Magento\Sales\Api\Data\ShipmentCommentCreationExtensionInterface $extensionAttributes
- * @return $this
- * @since 100.1.2
- */
- public function setExtensionAttributes(
- \Magento\Sales\Api\Data\ShipmentCommentCreationExtensionInterface $extensionAttributes
- );
- }
|