ok
Direktori : /home2/selectio/www/fms-worksuite/vendor/square/square/src/Models/ |
Current File : /home2/selectio/www/fms-worksuite/vendor/square/square/src/Models/QuantityRatio.php |
<?php declare(strict_types=1); namespace Square\Models; use stdClass; /** * A whole number or unreduced fractional ratio. */ class QuantityRatio implements \JsonSerializable { /** * @var int|null */ private $quantity; /** * @var int|null */ private $quantityDenominator; /** * Returns Quantity. * * The whole or fractional quantity as the numerator. */ public function getQuantity(): ?int { return $this->quantity; } /** * Sets Quantity. * * The whole or fractional quantity as the numerator. * * @maps quantity */ public function setQuantity(?int $quantity): void { $this->quantity = $quantity; } /** * Returns Quantity Denominator. * * The whole or fractional quantity as the denominator. * In the case of fractional quantity this field is the denominator and quantity is the numerator. * When unspecified, the value is `1`. For example, when `quantity=3` and `quantity_donominator` is * unspecified, * the quantity ratio is `3` or `3/1`. */ public function getQuantityDenominator(): ?int { return $this->quantityDenominator; } /** * Sets Quantity Denominator. * * The whole or fractional quantity as the denominator. * In the case of fractional quantity this field is the denominator and quantity is the numerator. * When unspecified, the value is `1`. For example, when `quantity=3` and `quantity_donominator` is * unspecified, * the quantity ratio is `3` or `3/1`. * * @maps quantity_denominator */ public function setQuantityDenominator(?int $quantityDenominator): void { $this->quantityDenominator = $quantityDenominator; } /** * Encode this object to JSON * * @param bool $asArrayWhenEmpty Whether to serialize this model as an array whenever no fields * are set. (default: false) * * @return mixed */ public function jsonSerialize(bool $asArrayWhenEmpty = false) { $json = []; if (isset($this->quantity)) { $json['quantity'] = $this->quantity; } if (isset($this->quantityDenominator)) { $json['quantity_denominator'] = $this->quantityDenominator; } $json = array_filter($json, function ($val) { return $val !== null; }); return (!$asArrayWhenEmpty && empty($json)) ? new stdClass() : $json; } }