Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
module-sales
Api
Data
ShipmentCommentInterface.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Sales\Api\Data
;
7
8
use
Magento\Framework\Api\ExtensibleDataInterface
;
9
18
interface
ShipmentCommentInterface
extends
ExtensibleDataInterface
,
CommentInterface
,
EntityInterface
19
{
23
/*
24
* Parent ID.
25
*/
26
const
PARENT_ID
=
'parent_id'
;
27
/*
28
* Is-customer-notified flag.
29
*/
30
const
IS_CUSTOMER_NOTIFIED
=
'is_customer_notified'
;
31
37
public
function
getIsCustomerNotified
();
38
44
public
function
getParentId
();
45
52
public
function
setParentId
(
$id
);
53
60
public
function
setIsCustomerNotified
($isCustomerNotified);
61
67
public
function
getExtensionAttributes
();
68
75
public
function
setExtensionAttributes
(
76
\
Magento
\Sales\Api\Data\ShipmentCommentExtensionInterface
$extensionAttributes
77
);
78
}
Magento\Sales\Api\Data\ShipmentCommentInterface\IS_CUSTOMER_NOTIFIED
const IS_CUSTOMER_NOTIFIED
Definition:
ShipmentCommentInterface.php:30
$id
$id
Definition:
fieldset.phtml:14
Magento\Sales\Api\Data\ShipmentCommentInterface\setParentId
setParentId($id)
Magento\Sales\Api\Data\CommentInterface
Definition:
CommentInterface.php:14
Magento\Sales\Api\Data\ShipmentCommentInterface\getIsCustomerNotified
getIsCustomerNotified()
Magento\Sales\Api\Data\ShipmentCommentInterface\setIsCustomerNotified
setIsCustomerNotified($isCustomerNotified)
Magento\Sales\Api\Data\ShipmentCommentInterface\getExtensionAttributes
getExtensionAttributes()
Magento\Sales\Api\Data\ShipmentCommentInterface\setExtensionAttributes
setExtensionAttributes(\Magento\Sales\Api\Data\ShipmentCommentExtensionInterface $extensionAttributes)
$extensionAttributes
$extensionAttributes
Definition:
payment.php:22
Magento
Magento\Sales\Api\Data
Definition:
CommentInterface.php:6
Magento\Sales\Api\Data\EntityInterface
Definition:
EntityInterface.php:13
Magento\Framework\Api\ExtensibleDataInterface
Definition:
ExtensibleDataInterface.php:15
Magento\Sales\Api\Data\ShipmentCommentInterface
Definition:
ShipmentCommentInterface.php:18
Magento\Sales\Api\Data\ShipmentCommentInterface\getParentId
getParentId()
Magento\Sales\Api\Data\ShipmentCommentInterface\PARENT_ID
const PARENT_ID
Definition:
ShipmentCommentInterface.php:26