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
magento2-base
dev
tests
api-functional
_files
Magento
TestModule3
Service
V1
Entity
WrappedErrorParameter.php
Go to the documentation of this file.
1
<?php
7
namespace
Magento\TestModule3\Service\V1\Entity
;
8
9
class
WrappedErrorParameter
extends
\Magento\Framework\Api\AbstractExtensibleObject
10
{
16
public
function
getFieldName
()
17
{
18
return
$this->_data[
'field_name'
];
19
}
20
26
public
function
getValue
()
27
{
28
return
$this->_data[
'value'
];
29
}
30
37
public
function
setFieldName
($fieldName)
38
{
39
return
$this->
setData
(
'field_name'
, $fieldName);
40
}
41
48
public
function
setValue
(
$value
)
49
{
50
return
$this->
setData
(
'value'
,
$value
);
51
}
52
}
Magento\TestModule3\Service\V1\Entity\WrappedErrorParameter\getFieldName
getFieldName()
Definition:
WrappedErrorParameter.php:16
$value
$value
Definition:
gender.phtml:16
Magento\TestModule3\Service\V1\Entity\WrappedErrorParameter
Definition:
WrappedErrorParameter.php:9
Magento\TestModule3\Service\V1\Entity\WrappedErrorParameter\setValue
setValue($value)
Definition:
WrappedErrorParameter.php:48
Magento\TestModule3\Service\V1\Entity\WrappedErrorParameter\setFieldName
setFieldName($fieldName)
Definition:
WrappedErrorParameter.php:37
Magento\Framework\Api\AbstractSimpleObject\setData
setData($key, $value)
Definition:
AbstractSimpleObject.php:47
Magento\TestModule3\Service\V1\Entity\WrappedErrorParameter\getValue
getValue()
Definition:
WrappedErrorParameter.php:26
Magento\TestModule3\Service\V1\Entity
Definition:
Parameter.php:7
Magento\Framework\Api\AbstractExtensibleObject
Definition:
AbstractExtensibleObject.php:17