Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
forbidals
/
wp-content
/
plugins
/
wpforms-lite
/
vendor_prefixed
/
square
/
square
/
src
/
Models
:
CatalogCustomAttributeDefinitionNumberConfig.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php declare (strict_types=1); namespace WPForms\Vendor\Square\Models; use stdClass; class CatalogCustomAttributeDefinitionNumberConfig implements \JsonSerializable { /** * @var array */ private $precision = []; /** * Returns Precision. * An integer between 0 and 5 that represents the maximum number of * positions allowed after the decimal in number custom attribute values * For example: * * - if the precision is 0, the quantity can be 1, 2, 3, etc. * - if the precision is 1, the quantity can be 0.1, 0.2, etc. * - if the precision is 2, the quantity can be 0.01, 0.12, etc. * * Default: 5 */ public function getPrecision() : ?int { if (\count($this->precision) == 0) { return null; } return $this->precision['value']; } /** * Sets Precision. * An integer between 0 and 5 that represents the maximum number of * positions allowed after the decimal in number custom attribute values * For example: * * - if the precision is 0, the quantity can be 1, 2, 3, etc. * - if the precision is 1, the quantity can be 0.1, 0.2, etc. * - if the precision is 2, the quantity can be 0.01, 0.12, etc. * * Default: 5 * * @maps precision */ public function setPrecision(?int $precision) : void { $this->precision['value'] = $precision; } /** * Unsets Precision. * An integer between 0 and 5 that represents the maximum number of * positions allowed after the decimal in number custom attribute values * For example: * * - if the precision is 0, the quantity can be 1, 2, 3, etc. * - if the precision is 1, the quantity can be 0.1, 0.2, etc. * - if the precision is 2, the quantity can be 0.01, 0.12, etc. * * Default: 5 */ public function unsetPrecision() : void { $this->precision = []; } /** * Encode this object to JSON * * @param bool $asArrayWhenEmpty Whether to serialize this model as an array whenever no fields * are set. (default: false) * * @return array|stdClass */ #[\ReturnTypeWillChange] public function jsonSerialize(bool $asArrayWhenEmpty = \false) { $json = []; if (!empty($this->precision)) { $json['precision'] = $this->precision['value']; } $json = \array_filter($json, function ($val) { return $val !== null; }); return !$asArrayWhenEmpty && empty($json) ? new stdClass() : $json; } }