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
CommentInterface.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Sales\Api\Data
;
7
14
interface
CommentInterface
15
{
16
/*
17
* Is-visible-on-storefront flag.
18
*/
19
const
IS_VISIBLE_ON_FRONT
=
'is_visible_on_front'
;
20
21
/*
22
* Comment.
23
*/
24
const
COMMENT
=
'comment'
;
25
32
public
function
getComment
();
33
41
public
function
setComment
($comment);
42
49
public
function
getIsVisibleOnFront
();
50
58
public
function
setIsVisibleOnFront
($isVisibleOnFront);
59
}
Magento\Sales\Api\Data\CommentInterface\COMMENT
const COMMENT
Definition:
CommentInterface.php:24
Magento\Sales\Api\Data\CommentInterface\getIsVisibleOnFront
getIsVisibleOnFront()
Magento\Sales\Api\Data\CommentInterface
Definition:
CommentInterface.php:14
Magento\Sales\Api\Data\CommentInterface\IS_VISIBLE_ON_FRONT
const IS_VISIBLE_ON_FRONT
Definition:
CommentInterface.php:19
Magento\Sales\Api\Data
Definition:
CommentInterface.php:6
Magento\Sales\Api\Data\CommentInterface\setIsVisibleOnFront
setIsVisibleOnFront($isVisibleOnFront)
Magento\Sales\Api\Data\CommentInterface\getComment
getComment()
Magento\Sales\Api\Data\CommentInterface\setComment
setComment($comment)