amount = $amount; } /** * @return MonetaryAmount */ public function getAmount() { return $this->amount; } /** * @param bool */ public function setFullRefund($fullRefund) { $this->fullRefund = $fullRefund; } /** * @return bool */ public function getFullRefund() { return $this->fullRefund; } /** * @param string */ public function setLineItemId($lineItemId) { $this->lineItemId = $lineItemId; } /** * @return string */ public function getLineItemId() { return $this->lineItemId; } /** * @param string */ public function setProductId($productId) { $this->productId = $productId; } /** * @return string */ public function getProductId() { return $this->productId; } /** * @param int */ public function setQuantity($quantity) { $this->quantity = $quantity; } /** * @return int */ public function getQuantity() { return $this->quantity; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(OrdersCustomBatchRequestEntryRefundItemItem::class, 'Google_Service_ShoppingContent_OrdersCustomBatchRequestEntryRefundItemItem');