| Current Path : /var/www/clients/client3/web2/web/vendor/vertexinc/sdk/src/Data/ |
| Current File : /var/www/clients/client3/web2/web/vendor/vertexinc/sdk/src/Data/FlexibleNumericField.php |
<?php
/**
* @copyright Vertex. All rights reserved. https://www.vertexinc.com/
* @author Mediotype https://www.mediotype.com/
*/
namespace Vertex\Data;
/** @inheritDoc */
class FlexibleNumericField implements FlexibleNumericFieldInterface
{
/** @var int */
private $fieldId;
/** @var number */
private $value;
/** @inheritDoc */
public function getFieldId()
{
return $this->fieldId;
}
/** @inheritDoc */
public function getFieldValue()
{
return $this->value;
}
/** @inheritDoc */
public function setFieldId($fieldId)
{
$this->fieldId = $fieldId;
return $this;
}
/** @inheritDoc */
public function setFieldValue($fieldValue)
{
$this->value = $fieldValue;
return $this;
}
}