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
CreditmemoCommentInterface.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Sales\Api\Data
;
7
18
interface
CreditmemoCommentInterface
extends
\Magento\Framework\Api\ExtensibleDataInterface
19
{
23
/*
24
* Entity ID.
25
*/
26
const
ENTITY_ID
=
'entity_id'
;
27
/*
28
* Parent ID.
29
*/
30
const
PARENT_ID
=
'parent_id'
;
31
/*
32
* Is-customer-notified flag.
33
*/
34
const
IS_CUSTOMER_NOTIFIED
=
'is_customer_notified'
;
35
/*
36
* Is-visible-on-storefront flag.
37
*/
38
const
IS_VISIBLE_ON_FRONT
=
'is_visible_on_front'
;
39
/*
40
* Comment.
41
*/
42
const
COMMENT
=
'comment'
;
43
/*
44
* Created-at timestamp.
45
*/
46
const
CREATED_AT
=
'created_at'
;
47
53
public
function
getComment
();
54
60
public
function
getCreatedAt
();
61
68
public
function
setCreatedAt
($createdAt);
69
75
public
function
getEntityId
();
76
83
public
function
setEntityId
($entityId);
84
90
public
function
getIsCustomerNotified
();
91
97
public
function
getIsVisibleOnFront
();
98
104
public
function
getParentId
();
105
112
public
function
setParentId
(
$id
);
113
120
public
function
setIsCustomerNotified
($isCustomerNotified);
121
128
public
function
setIsVisibleOnFront
($isVisibleOnFront);
129
136
public
function
setComment
($comment);
137
143
public
function
getExtensionAttributes
();
144
151
public
function
setExtensionAttributes
(
152
\
Magento
\Sales\Api\Data\CreditmemoCommentExtensionInterface
$extensionAttributes
153
);
154
}
Magento\Sales\Api\Data\CreditmemoCommentInterface\IS_CUSTOMER_NOTIFIED
const IS_CUSTOMER_NOTIFIED
Definition:
CreditmemoCommentInterface.php:34
Magento\Sales\Api\Data\CreditmemoCommentInterface\COMMENT
const COMMENT
Definition:
CreditmemoCommentInterface.php:42
$id
$id
Definition:
fieldset.phtml:14
Magento\Sales\Api\Data\CreditmemoCommentInterface\getExtensionAttributes
getExtensionAttributes()
Magento\Sales\Api\Data\CreditmemoCommentInterface\getEntityId
getEntityId()
Magento\Sales\Api\Data\CreditmemoCommentInterface\getCreatedAt
getCreatedAt()
Magento\Sales\Api\Data\CreditmemoCommentInterface\PARENT_ID
const PARENT_ID
Definition:
CreditmemoCommentInterface.php:30
Magento\Sales\Api\Data\CreditmemoCommentInterface\IS_VISIBLE_ON_FRONT
const IS_VISIBLE_ON_FRONT
Definition:
CreditmemoCommentInterface.php:38
Magento\Sales\Api\Data\CreditmemoCommentInterface\ENTITY_ID
const ENTITY_ID
Definition:
CreditmemoCommentInterface.php:26
Magento\Sales\Api\Data\CreditmemoCommentInterface\setComment
setComment($comment)
Magento\Sales\Api\Data\CreditmemoCommentInterface\getIsVisibleOnFront
getIsVisibleOnFront()
Magento\Sales\Api\Data\CreditmemoCommentInterface\setIsVisibleOnFront
setIsVisibleOnFront($isVisibleOnFront)
Magento\Sales\Api\Data\CreditmemoCommentInterface\setEntityId
setEntityId($entityId)
$extensionAttributes
$extensionAttributes
Definition:
payment.php:22
Magento\Sales\Api\Data\CreditmemoCommentInterface\setExtensionAttributes
setExtensionAttributes(\Magento\Sales\Api\Data\CreditmemoCommentExtensionInterface $extensionAttributes)
Magento
Magento\Sales\Api\Data
Definition:
CommentInterface.php:6
Magento\Sales\Api\Data\CreditmemoCommentInterface\getParentId
getParentId()
Magento\Sales\Api\Data\CreditmemoCommentInterface\setCreatedAt
setCreatedAt($createdAt)
Magento\Sales\Api\Data\CreditmemoCommentInterface
Definition:
CreditmemoCommentInterface.php:18
Magento\Framework\Api\ExtensibleDataInterface
Definition:
ExtensibleDataInterface.php:15
Magento\Sales\Api\Data\CreditmemoCommentInterface\getIsCustomerNotified
getIsCustomerNotified()
Magento\Sales\Api\Data\CreditmemoCommentInterface\setParentId
setParentId($id)
Magento\Sales\Api\Data\CreditmemoCommentInterface\getComment
getComment()
Magento\Sales\Api\Data\CreditmemoCommentInterface\setIsCustomerNotified
setIsCustomerNotified($isCustomerNotified)
Magento\Sales\Api\Data\CreditmemoCommentInterface\CREATED_AT
const CREATED_AT
Definition:
CreditmemoCommentInterface.php:46