PayPal\Api\InvoiceItem::setQuantity PHP Méthode

setQuantity() public méthode

Quantity of the item. Range of -10000 to 10000.
public setQuantity ( string | double $quantity )
$quantity string | double
    public function setQuantity($quantity)
    {
        NumericValidator::validate($quantity, "Quantity");
        $quantity = FormatConverter::formatToPrice($quantity);
        $this->quantity = $quantity;
        return $this;
    }