1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php
namespace Magento\Tax\Api\Data;
/**
* Extension class for @see \Magento\Tax\Api\Data\QuoteDetailsItemInterface
*/
class QuoteDetailsItemExtension extends \Magento\Framework\Api\AbstractSimpleObject implements QuoteDetailsItemExtensionInterface
{
/**
* @return float|null
*/
public function getPriceForTaxCalculation()
{
return $this->_get('price_for_tax_calculation');
}
/**
* @param float $priceForTaxCalculation
* @return $this
*/
public function setPriceForTaxCalculation($priceForTaxCalculation)
{
$this->setData('price_for_tax_calculation', $priceForTaxCalculation);
return $this;
}
/**
* @return string|null
*/
public function getVertexProductCode()
{
return $this->_get('vertex_product_code');
}
/**
* @param string $vertexProductCode
* @return $this
*/
public function setVertexProductCode($vertexProductCode)
{
$this->setData('vertex_product_code', $vertexProductCode);
return $this;
}
/**
* @return bool|null
*/
public function getVertexIsConfigurable()
{
return $this->_get('vertex_is_configurable');
}
/**
* @param bool $vertexIsConfigurable
* @return $this
*/
public function setVertexIsConfigurable($vertexIsConfigurable)
{
$this->setData('vertex_is_configurable', $vertexIsConfigurable);
return $this;
}
}